﻿/* structure.css */
.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
}

.login-box {
    background: white;
    width: 320px;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

    .login-box h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

.input-group {
    margin-bottom: 20px;
}

    .input-group input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        transition: border-color 0.3s;
    }

        .input-group input:focus {
            border-color: #6b73ff;
        }

.error-msg {
    color: red;
    font-size: 0.9em;
    margin-bottom: 15px;
    min-height: 1.2em;
}

.submit-group button {
    width: 100%;
    padding: 12px;
    background: #6b73ff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-group button:hover {
        background: #5a63d1;
    }

.extra-links {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
}

    .extra-links .forgot {
        color: #555;
    }

    .extra-links label {
        display: flex;
        align-items: center;
        font-size: 0.9em;
    }
