.bi-asterisk{
    color: red;
    font-size: 14px;
}

.login-section {   
    background-color: #f9f9f9;
}

.login-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

.login-benefits {
    padding: 40px;
    background: #f5f5f5;
    flex: 1;
}

.login-card h2 {
    margin-bottom: 10px;
    color: #333;
}

.login-card p {
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot-password {
    color: #0066cc;
    text-decoration: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-button:hover {
    background-color: #0052a3;
}

.social-login {
    text-align: center;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

.google-btn {
    color: #db4437;
}

.facebook-btn {
    color: #4267B2;
}

.register-link {
    text-align: center;
    color: #666;
}

.register-link a {
    color: #0066cc;
    text-decoration: none;
}

.login-benefits h3 {
    margin-bottom: 20px;
    color: #333;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
}

.login-benefits li {
    margin-bottom: 15px;
    color: #555;
}

.login-benefits i {
    color: #0066cc;
    margin-right: 10px;
}