﻿body {
    background: linear-gradient(180deg, #EF8027, #FFD54F);
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
    position: relative;
}

.avatar {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

    .avatar img {
        width: 220px;
        height: 100px;
    }

.login-title {
    color: #2e3b4e;
    font-weight: 600;
}

.is-primary-custom {
    background: linear-gradient(90deg, #00394C, #EF8027);
    color: white;
}

    .is-primary-custom:hover {
        background-color: #243142;
    }

.swal2-confirm {
    background-color: #2e3b4e !important;
}

.password-toggle {
    cursor: pointer;
    pointer-events: auto;
}

.footer-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
}

.progress.is-hidden {
    display: none;
}
