/* ----------------------------------------------
    Global Settings
---------------------------------------------- */
body {
    font-family: 'Poppins', sans-serif;
    background: url('/images/Login1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* ----------------------------------------------
    Login Card Container
---------------------------------------------- */
.login-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 400px;
    margin: auto;
}


    .login-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
    }

    /* ----------------------------------------------
    Title inside Login Card
---------------------------------------------- */
    .login-card h2 {
        font-weight: 500;
        font-size: 32px;
        color: #ff6600;
        text-align: center;
        margin-bottom: 32px;
        letter-spacing: 0.5px;
        background: linear-gradient(45deg, #ff6600, #ff8c00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* ----------------------------------------------
    Form Group (Input + Label)
---------------------------------------------- */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

    .form-group label {
        position: absolute;
        top: 14px;
        left: 36px;
        font-weight: 500;
        font-size: 14px;
        color: #777;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-group input {
        width: 90%;
        padding: 12px 16px 12px 36px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        font-size: 14px;
        color: #333;
        background: #ffffff;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }

        .form-group input:focus,
        .form-group input:not(:placeholder-shown) {
            border-color: #ff6600;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
        }

            .form-group input:focus + label,
            .form-group input:not(:placeholder-shown) + label {
                top: -10px;
                left: 12px;
                font-size: 12px;
                color: #ff6600;
                background: #ffffff;
                padding: 0 4px;
            }

        .form-group input::placeholder {
            color: transparent;
        }

/* ----------------------------------------------
    Icons inside Form Inputs
---------------------------------------------- */
.input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #777;
}

/* ----------------------------------------------
    Password Toggle Button (eye icon)
---------------------------------------------- */
.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

/* ----------------------------------------------
    Buttons Style (Login & Zoho)
---------------------------------------------- */
.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.btn-login {
    background: linear-gradient(45deg, #ff6600, #ff8c00);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-zoho {
    background: linear-gradient(45deg, #2e8dea, #1f6cc7);
    color: #fff;
    margin-top: 12px;
}

/* ----------------------------------------------
    Footer Text
---------------------------------------------- */
.footer {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #777;
}

/* ----------------------------------------------
    SweetAlert2 Custom Styles
---------------------------------------------- */
.swal2-popup {
    font-family: 'Poppins', sans-serif;
    border-radius: 16px;
}

.swal2-title {
    font-size: 24px;
    font-weight: 700;
    color: #ff6600;
}

.swal2-confirm {
    background: #2e8dea !important;
    color: #fff !important;
}
