.login-page {
    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;
}


.login-container {
    width: 900px;
    max-width: 100%;

    min-height: 550px;

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.12);

    display: grid;

    grid-template-columns:
        1fr 1fr;
}


/* LEFT */

.login-info {
    background:
        linear-gradient(
            135deg,
            #1e3a8a,
            #2563eb
        );

    color: white;

    padding: 60px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.login-info img {
    width: 80px;

    margin-bottom: 25px;
}

.login-info h1 {
    font-size: 30px;

    line-height: 1.25;

    margin-bottom: 20px;
}

.login-info p {
    color: #dbeafe;

    font-size: 14px;

    margin-bottom: 30px;
}

.login-info a {
    color: white;

    font-size: 13px;
}


/* RIGHT */

.login-form {
    padding: 60px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 28px;

    margin-bottom: 7px;
}

.login-header p {
    color: #9ca3af;

    font-size: 13px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    font-size: 13px;

    font-weight: bold;

    margin-bottom: 7px;
}

.form-group input {
    width: 100%;

    padding: 13px;

    border: 1px solid #d1d5db;

    border-radius: 6px;

    outline: none;

    font-size: 13px;
}

.form-group input:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37,99,235,0.1);
}


.form-options {
    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 12px;

    margin-bottom: 25px;
}

.form-options a {
    color: #2563eb;
}


.login-button {
    width: 100%;

    padding: 13px;

    border-radius: 6px;

    background: #2563eb;

    color: white;

    font-size: 14px;

    font-weight: bold;

    transition: 0.3s;
}

.login-button:hover {
    background: #1d4ed8;
}


.login-footer {
    text-align: center;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #e5e7eb;

    font-size: 12px;
}

.login-footer p {
    color: #9ca3af;

    margin-bottom: 5px;
}

.login-footer a {
    color: #2563eb;
}

.login-error {
    background: #fef2f2;

    border: 1px solid #fecaca;

    color: #dc2626;

    padding: 12px;

    border-radius: 6px;

    font-size: 12px;

    margin-bottom: 20px;
}

.login-success {
    background: #ecfdf5;

    border: 1px solid #a7f3d0;

    color: #047857;

    padding: 12px;

    border-radius: 6px;

    font-size: 12px;

    margin-bottom: 20px;
}

.reset-link-box {
    margin-top: 20px;

    padding: 15px;

    background: #eff6ff;

    border: 1px solid #bfdbfe;

    border-radius: 6px;

    font-size: 12px;
}

.reset-link-box p {
    margin-bottom: 8px;

    color: #4b5563;
}

.reset-link-box a {
    color: #2563eb;

    font-weight: bold;

    word-break: break-all;
}