:root {
    --primary-color: #F97316;  
    --secondary-color: #252a34; 
    --highlight-color: #ffffff; 
}

body {
    background-color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
}

.card {
    background-color: var(--secondary-color);
    border-radius: 1.2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    padding: 2rem;
    color: #fff;
    margin-top:50px !important;
}

.form-control {
    border-radius: 0.7rem;
    padding: 0.8rem;
}

.btn-primary {
    background-color: #F97316;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #e66210;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--highlight-color);
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}