/* General Form Styling */

.form-group {
    margin-bottom: 18px;
    /* Adjusted margin */
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    /* Adjusted margin */
    font-weight: 500;
    font-size: 0.9rem;
    /* Adjusted font size */
    color: blue;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    /* Adjusted padding */
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    /* Adjusted font size */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="file"]:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(0, 82, 165, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    /* Minimum height for textarea */
}

.form-group input[type="file"] {
    padding: 8px;
    /* Specific padding for file input */
    background-color: #fdfdfd;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}


/* Contact Form Specifics */

.contact-form {
    flex: 1.5;
    min-width: 100px;
    /* Adjusted min-width */
    background-color: var(--bg-light);
    padding: 25px;
    /* Adjusted padding */
    border-radius: 5px;
    box-shadow: var(--shadow-light);
}

.contact-form h3 {
    font-size: 1.6rem;
    /* Adjusted font size */
    color: var(--brand-blue);
    margin-bottom: 18px;
    /* Adjusted margin */
    text-align: left;
}


/* Career Form Specifics */


/* For two-column layout on wider screens */

@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        /* Two columns */
    }
    .form-group.full-width {
        grid-column: 1 / -1;
        /* Span full width */
    }
}

.submit-group {
    text-align: center;
    margin-top: 25px;
}

.btn-submit-application {
    padding: 14px 35px;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
}