.form-container {
    max-width: 900px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.page-title {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.page-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.form-control {
    /* margin-bottom: 15px; */
    border-radius: 3px;
    border: 1px solid #ddd;
}

.upload-label {
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.upload-note {
    color: #666;
    font-size: 12px;
}

.submit-btn {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 8px 25px;
}

.checkbox-text {
    font-size: 13px;
    color: #333;
}

.checkbox-text a {
    color: #0d6efd;
    text-decoration: none;
}

textarea.form-control {
    min-height: 100px;
}

.required-field::after {
    content: "*";
    color: red;
}