/* General form styling */
.register-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.form-title {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-control {
    border: 1.5px solid #888; /* Lighter border */
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 15px;
}

.form-control::placeholder {
    color: #b3b3b3;
    font-style: italic;
}

.required-field {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    color: #333;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.btn-submit {
    background-color: #3b5998;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 0;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #4CB047; /* Slightly darker shade */
    color: #fff;
}

.text-muted {
    font-size: 12px;
    color: #6c757d;
}

.register-container a {
    color: #3b5998;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.form-control::placeholder {
    color: #476DB0; /* Default placeholder color */
}

.form-control[placeholder*="*"]::placeholder {
    color: #476DB0; /* Primary color for placeholders with asterisk */
}

.readonly-input[readonly] {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}