*:not(svg):not(svg *) {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    width: 100%;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #e8eef7;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(90deg, #071a34 0%, #0b2940 100%);
    color: #ffffff;
    padding: 35px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-header svg {
    width: auto !important;
    height: 64px !important;
    margin: 0 auto 10px auto !important;
    margin-left: 60px !important;
    display: block !important;
    max-width: 100% !important;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.login-header p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
}

.login-content {
    padding: 30px;
}

.alert {
    margin-bottom: 20px;
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.5;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

form {
    margin: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #2d3748;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 11px;
}

.form-group input {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 11px;
    font-family: inherit;
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.2s ease;
    color: #2d3748;
}

.form-group input::placeholder {
    color: #999;
    font-size: 11px;
}

.form-group input:focus {
    outline: none;
    border-color: #071a34;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(7, 26, 52, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(90deg, #071a34 0%, #0b2940 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
    line-height: 1.4;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #0a1528 0%, #0d2838 100%);
    box-shadow: 0 2px 6px rgba(7, 26, 52, 0.35);
}

.btn-submit:active {
    background: linear-gradient(90deg, #050f20 0%, #081d30 100%);
    transform: translateY(1px);
}

.login-footer {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.login-footer p {
    font-size: 11px;
    color: #666;
    margin: 0;
}

.login-footer a {
    color: #071a34;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-footer a:hover {
    color: #0b2940;
    text-decoration: underline;
}
