﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(to right, #a1c9fd, #eeeef2);
}

/* Page Centering */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Card */
.login-card {
    display: flex;
    width: 900px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* Left Panel */
.left-panel {
    width: 55%;
    background: #f2f6ff;
}

    .left-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Right Panel */
.right-panel {
    width: 45%;
    padding: 50px 40px;
}

    .right-panel h2 {
        margin-bottom: 30px;
        color: #2c3e50;
    }

/* Form */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        margin-bottom: 6px;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #dcdcdc;
        border-radius: 8px;
        font-size: 14px;
    }

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 25px;
}

    .options a {
        text-decoration: none;
        color: #1a73e8;
    }

/* Button */
.login-btn {
    width: 40%;
    padding: 0px;
    background: linear-gradient(to right, #a1c9fd, #02306c);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    float:left;
    height:50px;
    font-weight:700;
}

.forgot-btn {
    width: 60%;
    padding: 0px;
    background: linear-gradient(to right, #a1c9fd, #02306c);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    float: left;
    height: 50px;
    font-weight: 600;
}

    .login-btn:hover {
        opacity: 0.9;
    }
.forgot-btn:hover {
    opacity: 0.9;
}

/* Help */
.help {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

    .help a {
        color: #1a73e8;
        text-decoration: none;
    }

/* =======================
   RESPONSIVE
======================= */

/* Laptop */
@media (max-width: 1024px) {
    .login-card {
        width: 95%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        height: 250px;
    }

    .right-panel {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .right-panel {
        padding: 30px 20px;
    }
}
/* =======================
   MODAL (Forgot Password)
======================= */

/*.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-card {
    width: 420px;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

    .modal-card h3 {
        margin-bottom: 10px;
        color: #2c3e50;
    }

    .modal-card p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
*/
.btn-cancel {
    padding: 10px 18px;
    background: #f1f1f1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-submit {
    padding: 10px 18px;
    background: linear-gradient(to right, #1a73e8, #005ad5);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 480px) {
    .modal-card {
        width: 90%;
    }
}

