@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #333;
}

.apply.container {
    max-width: 640px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #1e1e1e;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c59d28);
    margin: 16px auto 0;
    border-radius: 2px;
}

.apply-form {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e2e2;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
}

select,
input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    background-color: #fdfdfd;
    transition: border-color 0.25s ease;
}


select:focus,
input:focus {
    border-color: #d4af37;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #1f1f1f, #2a2a2a);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    /* border: 2px solid #d4af37; */
    cursor: pointer;
    transition: all 0.25s ease;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #2a2a2a, #1f1f1f);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
