sacg-cronogramas/src/app/pages/login/login.component.scss
2025-04-28 16:40:33 -04:00

201 lines
3.3 KiB
SCSS

:host {
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Header Styles */
.header {
background-color: #d3e9f7;
padding: 1rem 3rem;
display: flex;
align-items: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
align-items: center;
gap: 2rem;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.siss-logo {
height: 60px;
}
.sacg-container {
display: flex;
flex-direction: column;
}
.sacg-title {
display: flex;
align-items: center;
font-size: 2.5rem;
font-weight: bold;
color: #0a2847;
position: relative;
}
.version-badge {
background-color: #0088cc;
color: white;
border-radius: 50%;
padding: 0.1rem 0.4rem;
font-size: 0.8rem;
position: absolute;
top: 0;
right: -1.5rem;
}
.sacg-subtitle {
font-size: 1.2rem;
color: #0a2847;
}
/* Main Content Styles */
.main-content {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
background-image: url('assets/img/keyboard-bg.jpg');
background-size: cover;
background-position: center;
position: relative;
}
.main-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(240, 240, 240, 0.7);
}
.login-container {
position: relative;
z-index: 10;
}
.login-box {
width: 360px;
max-width: 100%;
}
.login-card {
background-color: white;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
overflow: hidden;
}
.login-header {
padding: 1rem;
text-align: center;
border-bottom: 1px solid #e0e0e0;
}
.login-header h2 {
margin: 0;
font-size: 1.2rem;
font-weight: normal;
color: #666;
}
.login-card form {
padding: 1.5rem;
}
.p-inputgroup-addon {
background-color: #f0f0f0;
border-color: #ced4da;
}
.login-actions {
display: flex;
justify-content: flex-end;
margin-top: 1rem;
}
.p-button-primary {
background-color: #0088cc;
border-color: #0088cc;
}
.password-recovery {
padding: 0 1.5rem 1.5rem;
text-align: left;
}
.password-recovery a {
color: #0088cc;
text-decoration: none;
font-size: 0.9rem;
}
.password-recovery a:hover {
text-decoration: underline;
}
/* Footer Styles */
.footer {
background-color: #0088cc;
color: white;
padding: 1rem 2rem;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.footer-left, .footer-right {
display: flex;
align-items: center;
font-size: 0.8rem;
}
.footer-left {
gap: 0.5rem;
}
.footer-text {
display: flex;
flex-direction: column;
}
.footer-logo {
height: 40px;
}
.footer-right {
flex-direction: column;
align-items: flex-end;
}
/* Responsive styles */
@media screen and (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 1rem;
}
.footer-content {
flex-direction: column;
gap: 1rem;
}
.footer-right {
align-items: center;
}
}