/* Jobedia Registration System Styles - Version 1.16.9 */
.jobedia-form-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    color: #344767;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.welcome-message {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #1e2a44;
    margin-bottom: 30px;
}

.jobedia-form-container h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #1e2a44;
    margin-bottom: 25px;
}

.jobedia-form-container h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1e2a44;
    margin-bottom: 20px;
}

.form-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: #e6f0fa;
    border-radius: 12px;
    padding: 4px;
}

.form-step:not(#step-1) .form-toggle {
    background: transparent;
}

.form-toggle button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #344767;
    transition: all 0.3s ease;
}

.form-toggle button.active {
    background: #003087;
    color: white;
    border-radius: 10px;
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group.name-group,
.form-group.password-group {
    display: flex;
    gap: 10px;
}

.form-group.name-group input,
.form-group.password-group input {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4d9e0;
    background: #fff;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003087;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 8px;
}

.file-placeholder {
    display: block;
    font-size: 14px;
    color: #344767;
    margin-top: 5px;
}

.account-type-buttons .account-type-options {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.account-type-buttons .account-type-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #d4d9e0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #344767;
    text-align: center;
    transition: all 0.3s ease;
}

.account-type-buttons .account-type-btn.active {
    border-color: #003087;
    background: #003087;
    color: white;
}

.account-type-buttons .account-type-btn:hover {
    border-color: #002a6e;
    background: #002a6e;
    color: white;
    transform: translateY(-2px);
}

.btn,
.btn-submit,
.btn-otp,
.btn-next,
.btn-prev {
    display: inline-block;
    padding: 14px 20px;
    background: #003087;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
    position: relative;
}

.btn-otp {
    background: #004c99;
}

.btn-prev {
    background: #6c757d;
}

.btn-submit:hover,
.btn-otp:hover,
.btn-next:hover,
.btn-prev:hover {
    background: #002a6e;
    transform: translateY(-2px);
}

.btn-prev:hover {
    background: #5a6268;
}

.btn-logout {
    display: inline-block;
    padding: 8px 16px;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-logout:hover {
    background: #660000;
    transform: translateY(-2px);
}

.btn-edit-profile {
    display: inline-block;
    padding: 8px 16px;
    background: #003087;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-edit-profile:hover {
    background: #002a6e;
    transform: translateY(-2px);
}

.forgot-password,
.back-to-login,
.back-to-forgot {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #003087;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover,
.back-to-login:hover,
.back-to-forgot:hover {
    color: #002a6e;
    text-decoration: underline;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.progress-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.progress-step {
    width: 30px;
    height: 6px;
    background: #d4d9e0;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.progress-step.active {
    background: #003087;
}

.wizard-form .wizard-step {
    display: none;
}

.wizard-form .wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.profile-complete {
    text-align: center;
    padding: 40px 0;
}

.profile-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4d9e0;
    margin-bottom: 20px;
}

.account-name {
    font-size: 24px;
    font-weight: 600;
    color: #1e2a44;
    margin-bottom: 15px;
}

.completion-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    background: #003087;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.checkmark-circle i {
    color: white;
    font-size: 40px;
}

.notification {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    min-height: 40px;
}

.notification.success {
    background: #28a745;
    color: white;
}

.notification.error {
    background: #dc3545;
    color: white;
}

.profile-image-container {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4d9e0;
}

.profile-image.uploaded {
    border-color: #003087;
}

.profile-image-upload {
    width: 200px;
    height: 200px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-container:hover .profile-image-upload {
    opacity: 1;
}

.profile-image-upload i {
    font-size: 40px;
    color: white;
}

.loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-top: 3px solid #003087;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-submit.loading .loading-spinner,
.btn-otp.loading .loading-spinner,
.btn-edit-profile.loading .loading-spinner,
.btn-logout.loading .loading-spinner {
    display: inline-block;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .jobedia-form-container {
        max-width: 100%;
        padding: 20px;
        margin: 20px 10px;
    }

    .welcome-message {
        font-size: 28px;
    }

    .jobedia-form-container h2 {
        font-size: 22px;
    }

    .jobedia-form-container h3 {
        font-size: 18px;
    }

    .form-toggle button {
        padding: 10px;
        font-size: 14px;
    }

    .btn,
    .btn-submit,
    .btn-otp,
    .btn-next,
    .btn-prev {
        padding: 12px;
        font-size: 15px;
    }

    .btn-logout,
    .btn-edit-profile {
        padding: 6px 12px;
        font-size: 13px;
    }

    .account-type-buttons .account-type-options {
        flex-direction: row;
        gap: 8px;
    }

    .form-group.name-group,
    .form-group.password-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-group.name-group input,
    .form-group.password-group input {
        width: 100%;
    }

    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark-circle i {
        font-size: 30px;
    }

    .profile-image,
    .profile-avatar {
        width: 150px;
        height: 150px;
    }

    .profile-image-upload {
        width: 150px;
        height: 150px;
    }

    .profile-image-upload i {
        font-size: 30px;
    }

    .button-group {
        flex-direction: row;
        gap: 10px;
    }
}