﻿body {
    font-family: 'Nunito', sans-serif;
    background-color: #F2F2F2;
    min-height: 100vh;
}

.login-wrapper {
    display: flex;
    min-height: 100vh;
}

.brand-panel {
    background: linear-gradient(135deg, #049DD9 0%, #049DBF 60%, #8EBF6B 100%);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.circle-1 {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    ready-border: 50%;
    background: #F2F2F2;
    opacity: 0.1;
    border-radius: 50%;
}

.circle-2 {
    position: absolute;
    bottom: -8rem;
    right: -4rem;
    width: 30rem;
    height: 30rem;
    background: #AABF0A;
    opacity: 0.1;
    border-radius: 50%;
}

.form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

.btn-stt {
    border: 2px solid #049DD9;
    background-color: #white;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    transition: all 0.2s;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .btn-stt:hover {
        background-color: #e6f7fd;
    }

.input-group-custom {
    position: relative;
}

    .input-group-custom i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #a0aec0;
    }

    .input-group-custom .form-control {
        padding-left: 2.5rem;
        border-radius: 12px;
        height: 45px;
        border: 1px solid #e2e8f0;
    }

        .input-group-custom .form-control:focus {
            border-color: #049DD9;
            box-shadow: 0 0 0 3px rgba(4, 157, 217, 0.15);
        }

.btn-enter {
    background: linear-gradient(90deg, #049DD9, #049DBF);
    color: white;
    border: none;
    border-radius: 12px;
    height: 48px;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-enter:hover {
        opacity: 0.9;
        color: white;
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #a0aec0;
    font-size: 0.75rem;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider:not(:empty)::before {
        margin-right: .5em;
    }

    .divider:not(:empty)::after {
        margin-left: .5em;
    }

@media (max-width: 991.98px) {
    .brand-panel {
        display: none;
    }

    body {
        background-color: #F2F2F2;
    }
}