body.login-page {
    margin: 0;
    padding: 0;
    height: 100dvh;
    overflow: hidden;
    font-family: Proximus, Arial, Helvetica, sans-serif;
    background: #000;
}
.login-container {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}
.login-content {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}
.login-logo {
    margin: 0 auto 1.5rem;
    max-width: 200px;
}
.login-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.login-loading-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}
.login-password-input,
.login-submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: Proximus, Arial, Helvetica, sans-serif;
}
.login-form {
    margin-top: 2rem;
}
.login-form-group {
    margin-bottom: 1.5rem;
}
.login-password-input {
    border: 2px solid rgba(255,255,255,.1);
    color:rgba(255,255,255,.7);
    border-radius: 12px;
    background: rgba(255,255,255,0);
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.login-password-input::placeholder {
    color: rgba(255,255,255,.5);
}
.login-password-input:focus {
    outline: 0;
    border-color: #5c2d91;
}
.login-submit-button {
    background: #A67C34;
    background: linear-gradient(
        113deg, 
        rgba(166, 124, 52, 1) 0%,
        rgba(225, 210, 138, 1) 22%,
        rgba(218, 200, 128, 1) 34%,
        rgba(166, 124, 52, 1) 54%,
        rgba(116, 86, 21, 1) 78%,
        rgba(222, 206, 134, 1) 92%,
        rgba(166, 124, 52, 1) 100%
    );
    background-size: 120% 120%;
    background-position: 50% 50%;
    color: #fff;
    border: none;
    border-radius: 3px 3px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-position 0.3s ease-out, transform 0.3s ease-out;
}
.login-error-message,
.login-locked-message {
    font-size: 0.9rem;
    padding: 0.75rem;
    margin-top: 1rem;
}
.login-submit-button:hover:not(:disabled) {
    background-position: 60% 40%;
    transform: translateY(-1px);
}
.login-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.login-error-message {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.2);
}
.login-locked-message {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}
.login-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.login-bg-center {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.login-bg-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
}
.login-bg-overlay-left {
    left: 0;
}
.login-bg-overlay-right {
    right: 0;
}
.login-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login-loading-logo {
    width: 60px;
    height: 60px;
}
.login-loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5c2d91;
    margin-top: 1rem;
}
@media (max-width: 480px) {
    .login-content {
        padding: 5% 3%;
    }
    .login-logo {
        max-width: 160px;
    }
    .login-logo img {
        width: 100%;
        height: auto;
    }
}
