/**
 * עיצוב טופס גישה לדורשי עבודה
 */

.job-seekers-access-form {
    background-color: #f9f9f9;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 25px;
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
}

.job-seekers-access-form h2 {
    color: #444;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}

.job-seekers-access-form p {
    color: #666;
    margin-bottom: 20px;
}

.job-seekers-access-form .form-group {
    margin-bottom: 15px;
}

.job-seekers-access-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    direction: rtl;
}

.job-seekers-access-form input[type="submit"] {
    background-color:var(--jobs-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.job-seekers-access-form input[type="submit"]:hover {
    background-color: var(--jobs-primary-dark);
}

.job-seekers-access-form input[type="submit"]:disabled {
    background-color: var(--jobs-primary-dark);
    cursor: not-allowed;
}

.job-seekers-access-form .form-status {
    margin-top: 15px;
}

.job-seekers-access-form .alert {
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.job-seekers-access-form .alert-success {
    background-color: var(--jobs-primary-dark);
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.job-seekers-access-form .alert-danger {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

/* אנימציה לכפתור שליחה */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.job-seekers-access-form input[type="submit"]:focus {
    animation: pulse 0.5s;
    outline: none;
}

/* התאמה למובייל */
@media (max-width: 576px) {
    .job-seekers-access-form {
        padding: 15px;
        margin: 20px auto;
    }

    .job-seekers-access-form h2 {
        font-size: 20px;
    }

    .job-seekers-access-form input[type="password"],
    .job-seekers-access-form input[type="submit"] {
        font-size: 14px;
    }
}
