.logSecBody {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    display: flex;
    min-height: 550px;
}

.login-left {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.login-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.login-left h2 {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.login-left p {
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.login-right {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-control {
    height: 50px;
    border-radius: 10px;
    padding-left: 45px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #667eea;
}

.input-group-text {
    position: absolute;
    z-index: 10;
    height: 50px;
    background: transparent;
    border: none;
    color: #667eea;
}

.btn-login {
    background: linear-gradient(to right, #667eea, #764ba2);
    border: none;
    color: white;
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: linear-gradient(to right, #5a6fd1, #6a4295);
    transform: translateY(-2px);
    color: white;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.forgot-password:hover {
    color: #764ba2;
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.divider-text {
    padding: 0 10px;
    color: #999;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-btn.google {
    background-color: #db4437;
}

.social-btn.microsoft {
    background-color: #00a1f1;
}

.social-btn.linkedin {
    background-color: #0077b5;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 500px;
    }

    .login-left,
    .login-right {
        padding: 30px;
    }

    .login-left {
        padding-bottom: 50px;
    }
}

.signUpBody {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.signup_container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    display: flex;
    min-height: 600px;
}

.signup_left {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.signup_left::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.signup_left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.signup_left h2 {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.signup_left p {
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.signup_right {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup_logo {
    width: 80px;
    margin-bottom: 20px;
}

.signup_form-control {
    height: 50px;
    border-radius: 10px;
    padding-left: 45px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.signup_form-control:focus {
    box-shadow: none;
    border-color: #667eea;
}

.signup_input-group-text {
    position: absolute;
    z-index: 10;
    height: 50px;
    background: transparent;
    border: none;
    color: #667eea;
}

.signup_btn {
    background: linear-gradient(to right, #667eea, #764ba2);
    border: none;
    color: white;
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.signup_btn:hover {
    background: linear-gradient(to right, #5a6fd1, #6a4295);
    transform: translateY(-2px);
    color: white;
}

.signup_link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.signup_link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.signup_divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.signup_divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.signup_divider-text {
    padding: 0 10px;
    color: #999;
    font-size: 14px;
}

.signup_social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.signup_social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.signup_social-btn.google {
    background-color: #db4437;
}

.signup_social-btn.microsoft {
    background-color: #00a1f1;
}

.signup_social-btn.linkedin {
    background-color: #0077b5;
}

.signup_social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signup_progress {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 25px;
}

.signup_progress-bar {
    background: linear-gradient(to right, #667eea, #764ba2);
}

.signup_password-strength {
    font-size: 13px;
    margin-top: -15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .signup_container {
        flex-direction: column;
        max-width: 500px;
    }

    .signup_left,
    .signup_right {
        padding: 30px;
    }

    .signup_left {
        padding-bottom: 50px;
    }
}


.germanHero_container {
    background: url('../images/hrimg/tophri-21.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    padding: 5rem 1rem;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.germanHero_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(16, 185, 129, 0.4));
    opacity: 0.5;
    z-index: 1;
    animation: germanHero_overlayPulse 8s ease-in-out infinite;
}

.germanHero_content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: germanHero_fadeIn 1.5s ease-in-out;
}

.germanHero_title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    animation: germanHero_slideUp 1.2s ease-in-out;
    letter-spacing: 1px;
}

.germanHero_subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: germanHero_fadeIn 1.8s ease-in-out;
}

.germanHero_cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #2563eb, #10b981);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    animation: germanHero_pulse 2s ease-in-out infinite;
}

.germanHero_cta:hover {
    background: linear-gradient(45deg, #1d4ed8, #0d9488);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.germanHero_cta i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.germanHero_cta:hover i {
    transform: translateX(8px);
}

/* Animations */
@keyframes germanHero_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes germanHero_slideUp {
    from {
        transform: translateY(70px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes germanHero_pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes germanHero_overlayPulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .germanHero_container {
        padding: 3.5rem 1rem;
        min-height: 350px;
    }

    .germanHero_title {
        font-size: 2.8rem;
    }

    .germanHero_subtitle {
        font-size: 1.2rem;
    }

    .germanHero_cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}


.carrierBody {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.career-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-in-out;
}

.career-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.career-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.job-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.job-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2.5rem;
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    transition: opacity 0.4s;
    opacity: 0;
}

.job-card:hover::before {
    opacity: 1;
}

.job-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.job-card.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #eff6ff, #d1fae5);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.job-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.job-card:hover i {
    transform: scale(1.2);
}

.job-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.job-card p {
    color: #4b5563;
    font-size: 0.95rem;
}

.application-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    animation: slideUp 1s ease-in-out;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #111827;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    background: #ffffff;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.file-upload {
    display: flex;
    flex-direction: column;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    background: #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
}

.file-upload-label:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.file-upload-label i {
    color: #2563eb;
}

.file-upload-label:hover i {
    color: #ffffff;
}

.file-name {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #4b5563;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
}

.checkbox-group input {
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #4b5563;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
    color: #10b981;
}

.submit-btn {
    background: linear-gradient(45deg, #2563eb, #10b981);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #1d4ed8, #0d9488);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.success-message.active {
    display: block;
}

.success-message i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

.success-message h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
    text-transform: uppercase;
}

.success-message p {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.selected-role {
    background: linear-gradient(45deg, #eff6ff, #d1fae5);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    color: #2563eb;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .career-header h1 {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .job-categories {
        flex-direction: column;
        align-items: center;
    }

    .job-card {
        width: 100%;
        max-width: 400px;
    }

    .application-form {
        padding: 2rem;
    }
}

.recept_body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-x: hidden;
}

.receipt_container {
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.receipt_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.receipt_header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.receipt_header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #1e40af);
    border-radius: 4px;
}

.receipt_header h1 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.receipt_header p {
    color: #475569;
    font-size: 1.15rem;
    font-weight: 300;
}

.receipt_row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.receipt_row:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.receipt_label {
    width: 220px;
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.receipt_value {
    color: #1f2937;
    font-size: 1.15rem;
    flex: 1;
    font-weight: 400;
}

.receipt_value.italic {
    font-style: italic;
    color: #6b7280;
}

.receipt_footer {
    text-align: center;
    margin-top: 3rem;
}

.receipt_thankyou {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-in-out;
}

.receipt_button {
    background: linear-gradient(to right, #3b82f6, #1e40af);
    border: none;
    padding: 0.85rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
    color: white;
}

.receipt_button:hover {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.5);
    color: white;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.receipt_row {
    animation: fadeIn 0.6s ease-in-out;
    animation-fill-mode: backwards;
}

@media (max-width: 576px) {
    .receipt_container {
        padding: 1.5rem;
    }

    .receipt_label {
        width: 160px;
        font-size: 0.95rem;
    }

    .receipt_value {
        font-size: 1rem;
    }

    .receipt_header h1 {
        font-size: 2.2rem;
    }

    .receipt_button {
        padding: 0.75rem 2.5rem;
        font-size: 1rem;
    }
}

.myInput::placeholder {
    color: black!important;
  }