﻿
.login-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.login-image {
    flex: 1;
    background: var(--theme-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .login-image img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

.login-form {
    flex: 1.5;
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 15px;
}

    .login-header h2 {
        color: var(--theme-color);
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
    }

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: var(--theme-color);
        box-shadow: 0 0 0 3px rgba(64, 179, 209, 0.2);
        outline: none;
    }

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.captcha-refresh {
    cursor: pointer;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

    .captcha-refresh:hover {
        transform: rotate(90deg);
    }


.btn-block {
    display: block;
    width: 100%;
}


.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}


    .login-footer a {
        color: var(--theme-color);
        text-decoration: none;
        font-weight: 500;
    }


        .login-footer a:hover {
            text-decoration: underline;
        }


.divider {
    display: inline-block;
    margin: 0 10px;
    color: #ccc;
}


.error-message {
    color: #dc3545;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}


.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}


/* Responsive styles */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }


    .login-image {
        display: none;
    }


    .login-form {
        padding: 30px;
    }


    .btn-group {
        flex-direction: column;
    }


    .btn {
        width: 100%;
    }
}body {
}
