* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f3f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    display: flex;
    background: #EAF2FF;
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.left-section {
    flex: 0.6;
    background: #E3ECFF;
    text-align: center;
    padding: 20px;
    border-radius: 0 102px 1px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-section img {
    width: 150px;
    margin-bottom: 15px;
}

.left-section h1 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.login-form {
    flex: 1;
    padding: 40px;
}

.brand-logo {
    width: 147px;
    height: 29px;
}

.form-title {
    margin: 10px 0 20px;
    font-size: 24px;
    font-weight: 700;
}

.form-group label {
    font-weight: 600;
    color: #666;
}

.form-group input {
    border-radius: 20px;
}

.btn-login {
    width: 100%;
    background: #688EDC;
    color: #fff;
    border-radius: 20px;
    padding: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-login:hover {
    opacity: 0.9;
}

.success-text {
    color: green;
}

.error-text {
    color: red;
}

.info-text {
    color: #8A8A8E;
    margin-top: 15px;
}

.back-link {
    color: #688EDC;
    display: inline-block;
    margin-top: 10px;
}
