body {
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
}
.left-section {
    background: linear-gradient(135deg, #6c63ff, #3b3b98);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.left-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.left-section p {
    font-size: 18px;
    opacity: 0.9;
}
.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: 20px;
    width: 100%;
}
.form-label {
    font-weight: 600;
}
.form-control {
    border-radius: 15px;
    padding: 15px;
    border: 1px solid #ced4da;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}
.btn-primary {
    background: #3b3b98;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background: #6c63ff;
}
@media (max-width: 768px) {
    .left-section {
        display: none;
    }
}