/*
body {
        background: linear-gradient(135deg, #4e73df, #1cc88a);
        height: 100vh;
    }*/
    

    .login-wrapper {
      
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60vh;
    }

    .login-card {
        width: 100%;
        max-width: 420px;
        padding: 40px;
        border-radius: 15px;
        background: #ffffff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        
    }

    .login-title {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .login-subtitle {
        font-size: 14px;
        color: #888;
        margin-bottom: 30px;
    }

    .btn-login {
        width: 100%;
        border-radius: 30px;
        padding: 10px;
        font-weight: 600;
    }

    .password-wrapper {
        position: relative;
    }

    .password-wrapper .form-control {
        padding-right: 45px;
        /* เว้นที่ให้ icon */
    }

    .toggle-password {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #888;
    }

    .toggle-password:hover {
        color: #000;
    }