@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 900px;
    max-width: 90%;
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}

.login-left {
    background: linear-gradient(135deg, #2b59ff 0%, #0036d1 100%);
    width: 45%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
}

.login-left h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.login-left p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.95;
    margin: 0;
}

.login-right {
    width: 55%;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: -16px;
}

.login-brand img {
    height: 50px;
    margin-right: 8px;
}

.login-brand span {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.login-right h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.login-right .sub-text {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 15px;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 10px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    margin-bottom: 3px;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #dfe1e5;
    border-radius: 5px;
    font-size: 13px;
    color: #333;
    background-color: #fff;
    transition: all 0.2s;
    height: 36px;
}

.form-control:focus {
    border-color: #2b59ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(43, 89, 255, 0.1);
}

.form-action {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.forgot-password {
    color: #2b59ff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.btn-signin {
    width: 100%;
    background-color: #2b59ff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-signin:hover {
    background-color: #1a45d1;
}

.social-login-separator {
    margin: 15px 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.social-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #edf0f5;
}

.social-login-separator span {
    background-color: #fff;
    padding: 0 8px;
    position: relative;
    font-size: 11px;
    color: #999;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    height: 36px;
}

.btn-social:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.create-account {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.create-account a {
    color: #2b59ff;
    font-weight: 600;
    text-decoration: none;
}

.footer-text {
    margin-top: 15px;
    font-size: 9px;
    color: #bbb;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    .login-container {
        flex-direction: column;
        max-width: 100%;
        margin: 10px 0;
    }

    .login-left {
        width: 100%;
        padding: 20px;
        min-height: 100px;
        flex-shrink: 0;
        text-align: center;
    }

    .login-left h1 {
        font-size: 20px;
    }

    .login-right {
        width: 100%;
        padding: 20px;
    }
}