.card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 25px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        animation: slideUpFade 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(100px);
        transition: all 0.6s ease-out;
    }
    .card label {
        align-items: center;
    }
    .card input[type="text"],
    .card input[type="password"] {
        flex: 1;
        border-radius: 6px;
        border: none;
    }
    .card input[type="submit"] {
            width: 100%;
            padding: 10px;
            border: none;
            background-color: #1b7fb0;
            color: white;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: 10px !important;
    }

    .card input[type="submit"]:hover {
            background-color: #2a9fd6;
            color: black !important;
            transform: scale(1.02);
    }

    .card.animate-card {
        opacity: 1;
        transform: translateY(0);
    }

    .bi{
        background-size: contain;
        background-repeat: no-repeat;
        width: 16px;
        height: 16px;
    }
    .bi-eye-slash{
        background-image: url('/../../asset/img/eye-slash.svg');
    }
    .bi-eye{
        background-image: url('/../../asset/img/eye.svg');
    }
    .password-toggle-icon {
    position: absolute;
    top: 21px;
    right: 5%;
    transform: translateY(-50%);
    cursor: pointer;
    }
    
    .password-toggle-icon i {
    font-size: 18px;
    line-height: 1;
    color: #333;
    transition: color 0.3s ease-in-out;
    }
    
    .password-toggle-icon i:hover {
    color: #000;
    }
    
    input[type="password"] {
    padding-right: 30px;
    }

    .forgot-password {
        color: white; 
        background: none; 
        border: none; 
        text-decoration: underline; 
        cursor: pointer;
    }

    @keyframes slideUpFade {
        0% {
            transform: translateY(100px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    .user-status {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 500;
        color: #ffff33;
    }

    .status-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .server-name {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: yellow;
    }

    @media (min-width:360px){
        .serverName {
            font-size: 13px !important;
            font-weight: bolder !important;
            color: greenyellow !important;
        }
        .status-text {
            color: greenyellow !important;
        }
        .free {
            color: darkred !important;
            font-weight: bolder !important;
        }

        .forgot-password {
            color: greenyellow !important;
        }

        .disclaimer1 {
            color: greenyellow !important;
            font-size: 16px !important;
        }

        .disclaimer2 {
            margin-bottom: 3% !important;
        }

        .disclaimer-main {
            max-width: 90% !important;
        }
    }
    @media (min-width: 576px) {
        .wrap {
            width: 410px;
            margin-right: 62% !important;
            padding-top: 20px;
            padding-left: 40px;
            padding-right: 40px;
            padding-bottom: 20px;
        }

        .serverName {
            color: yellow !important;
            font-weight: normal !important;
        }

        .status-text {
            color: yellow !important;
        }
        .free {
            color: yellow !important;
        }

        .card input[type="submit"] {
            background-color: #1b7fb0;
            color: white !important;
        }

        .card input[type="submit"]:hover {
                background-color: #2a9fd6;
                color: yellow !important;
        }

        .forgot-password {
            color: white !important;
        }

        .disclaimer1 {
            color: greenyellow !important;
            font-size: 16px !important;
        }

        .disclaimer2 {
            margin-bottom: 1% !important;
        }

        #closeDisclaimer {
            width: 20% !important;
        }

        .disclaimer-main {
            max-width: 60% !important;
        }

    }
    
    .disclaimer {
        text-align: center;
        margin-top: 3%;
        margin-bottom: 3%;
        opacity: 0;
        transform: translateY(-50px);
        animation: slideDown 1s ease-out forwards;
    }

    @keyframes slideDown {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .disclaimer1 {
        text-decoration: none;
        font-weight: bold;
    }

    .disclaimer2 {
        margin-bottom: 1%;
    }

    #closeDisclaimer {
        width: auto;
        max-width: 100%;
    }

    .logo {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
    }