.login-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 0 20px 0;
background-color: var(--siga-bg-warm, #fff8f0);
font-family: var(--siga-font, "Montserrat", sans-serif);
} .login-card {
width: 100%;
max-width: 440px;
background-color: #ffffff;
border-radius: 20px;
padding: 48px 40px;
box-shadow: 0 4px 32px rgba(35, 62, 85, 0.10);
display: flex;
flex-direction: column;
gap: 32px;
} .login-card__brand {
display: flex;
flex-direction: column;
gap: 6px;
}
.login-card__label {
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--siga-gold, #a96f00);
}
.login-card__title {
font-size: 28px;
font-weight: 600;
line-height: 1.2;
color: var(--siga-navy, #233e55);
margin: 0;
} .login-card__error {
padding: 12px 16px;
background-color: #fff0f0;
border: 1px solid #fca5a5;
border-radius: 10px;
font-size: 14px;
font-weight: 500;
color: #b91c1c;
} .login-card__success {
padding: 12px 16px;
background-color: #f0fdf4;
border: 1px solid #86efac;
border-radius: 10px;
font-size: 14px;
font-weight: 500;
color: #166534;
} .login-form {
display: flex;
flex-direction: column;
gap: 20px;
}
.login-form__field {
display: flex;
flex-direction: column;
gap: 8px;
}
.login-form__field label {
font-size: 14px;
font-weight: 600;
color: var(--siga-navy, #233e55);
}
.login-form__field input {
width: 100%;
height: 48px;
padding: 0 16px;
border: 1.5px solid #dde3e9;
border-radius: 10px;
font-family: var(--siga-font, "Montserrat", sans-serif);
font-size: 15px;
font-weight: 500;
color: var(--siga-navy, #233e55);
background-color: #fafafa;
outline: none;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
box-sizing: border-box;
}
.login-form__field input::placeholder {
color: #b0b8c1;
}
.login-form__field input:focus {
border-color: var(--siga-navy, #233e55);
box-shadow: 0 0 0 3px rgba(35, 62, 85, 0.08);
background-color: #ffffff;
} .login-form__label-row {
display: flex;
align-items: center;
justify-content: space-between;
}
.login-form__forgot {
font-size: 13px;
font-weight: 500;
color: var(--siga-gold, #a96f00);
text-decoration: none;
transition: color 0.2s ease;
}
.login-form__forgot:hover,
.login-form__forgot:focus {
color: #7a5000;
} .login-form__submit {
width: 100%;
height: 50px;
margin-top: 4px;
background-color: #fa0400;
color: #ffffff;
font-family: var(--siga-font, "Montserrat", sans-serif);
font-size: 16px;
font-weight: 600;
border: none;
border-radius: 10000px;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.15s ease;
}
.login-form__submit:hover {
background-color: #d80300;
transform: translateY(-1px);
}
.login-form__submit:active {
transform: translateY(0);
} @media (max-width: 520px) {
.login-card {
padding: 36px 24px;
}
.login-card__title {
font-size: 24px;
}
}