.login-container {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}
.login-info {
    background: #2c3e50;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}
.login-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cbd5e1;
}
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}
.price-block {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.price-block .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 10px;
    display: block;
}
.price-block a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
.login-form-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-form-wrapper h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus {
    border-color: #2c3e50;
    outline: none;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: #219653;
}
.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.alert.error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #f87171;
}

@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
    }
}