/* Custom styles for the registration page */

.main-content {
    min-height: 85vh; /* Ensure the main content takes up most of the viewport height */
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Translucent registration card */
.registration-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Style for form inputs */
.form-control, .form-select {
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* **** جدید: استایل اختصاصی برای select box **** */
.form-select {
    padding-left: 40px; /* فضای اضافی در سمت چپ برای آیکون فلش */
    background-position: left 0.75rem center; /* موقعیت فلش را به چپ منتقل می‌کند */
}


.form-control:focus, .form-select:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

/* Style for the submit button */
.btn-success-custom {
    background-image: linear-gradient(45deg, #4CAF50 0%, #81C784 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.btn-success-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.6);
    background-image: linear-gradient(45deg, #388E3C 0%, #66BB6A 100%);
}

/* Style for labels */
.form-label {
    font-weight: 500;
}