﻿.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .form-container:hover {
        box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
    }

.form-input {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

    .form-input:focus {
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    }

.file-upload-container {
    border: 2px dashed #cbd5e0;
    transition: all 0.3s ease;
}

    .file-upload-container:hover {
        border-color: #4299e1;
        background-color: #f8fafc;
    }

.submit-btn {
    transition: all 0.3s ease;
    background-image: linear-gradient(to right, #4299e1, #4a7bd9);
}

    .submit-btn:hover {
        background-image: linear-gradient(to right, #4a7bd9, #4299e1);
        transform: translateY(-2px);
    }

.success-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apply-btn {
    background-color: #2563eb; /* Blue-600 */
    color: #fff;
    padding: 0.75em 2em;
    border: none;
    border-radius: 0.5em;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    margin-top: 1em;
    margin-bottom: 0.5em;
    outline: none;
}

    .apply-btn:hover,
    .apply-btn:focus {
        background-color: #1d4ed8; /* Blue-700 */
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.16);
        transform: translateY(-2px) scale(1.03);
    }

    .apply-btn:active {
        background-color: #1e40af; /* Blue-800 */
        transform: scale(0.98);
    }
.loadingSpinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}
    .loadingSpinner img {
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
    }

.hiring-flash-btn {
    background: #e11d48;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    padding: 0.25em 1em;
    margin-left: 0.5em;
    font-size: 0.95em;
    animation: hiring-flash 1s infinite alternate;
    box-shadow: 0 0 0 0 #e11d48;
    cursor: pointer;
    outline: none;
    transition: box-shadow 0.2s;
}

@keyframes hiring-flash {
    0% {
        background: #e11d48;
        box-shadow: 0 0 0 0 #e11d48;
    }
    70% {
        background: #be123c;
        box-shadow: 0 0 12px 4px #e11d48aa;
    }
    100% {
        background: #e11d48;
        box-shadow: 0 0 0 0 #e11d48;
    }
}

.hiring-flash-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}