﻿body {
    background-color: white;
}

.login-container {
    max-width: 1200px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.login-form {
    flex: 1;
    padding-right: 40px;
/*    border-right: 1px solid #ddd;*/
}

.login-help {
    flex: 0.9;
    padding-left: 40px;
    border: 1px solid #15133C;
    border-radius: 5px;
    margin-top: 45px;
    height: 200px;
    background-color: #fcf9ff;
}

h2 {
    padding: 40px 0;
    font-size: 24px;
    font-weight: 700;
    color: #2d0f5b;
}

.login-form span {
    font-size: 26px;
}

.field label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.field .icon {
    color: #7158E2;
}

.ui.main.button {
    background-color: #9C6FE4;
    color: white;
}

.ui.main.button:hover {
    background-color: #794AFF;
}

.ui.divider {
    margin: 20px 0;
}

.login-help h3 {
    font-size: 18px;
    font-weight: 700;
    color: #15133C;
}

.login-help p {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

    .login-help p i {
        color: #7158E2;
        margin-right: 8px;
    }

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #000;
}

    .footer a {
        color: #15133C;
        font-weight: 700;
    }
    .footer-link {
        color: #15133C;
        font-weight: 700;
        text-decoration: underline;
    }

.welcome-message {
    color: #5505CD;
}
.help-section {
    padding: 15px;
}
.help-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d0f5b;
}
.help-contacts {
    padding-left: 20px;
}

.help-contacts p {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.help-contacts p i {
    color: #7158E2;
    margin-right: 8px;
}



/* General Form Styles */
.ui.form .field label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.ui.form .field .icon {
    color: #7158E2;
}

/* Login Button */
.login-btn {
    width: 100%;
    background-color: #794AFF;
    color: white;
}

.login-btn:hover {
    background-color: #794AFF;
}

.register-btn {
    width: 100%;
    background-color: #15133C;
    color: white;
}

.register-btn:hover {
    background-color: #120d2c;
}


/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-buttons .ui.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.legal-button img {
    height: 20px;
    margin-right: 8px;
}

/* Remember Me Section */
.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    color: #15133C;
    font-weight: 700;
    text-decoration: underline;
}

/* Login Alternative */
.login-alternative {
    text-align: center;
    margin-top: 20px;
}

.login-alternative p {
    font-size: 14px;
    color: #15133C;
}


.social-buttons .ui.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.social-buttons {
    width: 100%;
}

.legal-button img {
    height: 20px;
    margin-right: 8px;
}

.recruiter-title 
{
    color: #070095DE;
}


/* Container for the forgot password page */
.forgotPassword-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0;
}
.changePassword-container {
    display: flex;
    justify-content: center;
    padding: 0;
}
.logo {
    /*margin-top: 2rem;*/
    text-align: center;
}
/* Left Section (Form) */
.forgotPassword-form-container {
    background-color: #fff;
    padding: 3rem 2rem;
}
    .forgotPassword-form-container h1 {
        color: #794AFF;
        font-size: 24px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .forgotPassword-form-container p {
        font-size: 14px;
        color: #777;
        margin-bottom: 2rem;
    }
    .footer-forgotPassword {
        margin-top: 20px;
        text-align: center;
    }
.forgotPassword-form-container .footer-forgotPassword span a {
    color: #9C6FE4;
    font-weight: bold;
    text-decoration: none;
}

        .forgotPassword-form-container .footer-forgotPassword span a:hover {
            text-decoration: underline;
        }


.ui.grid.stackable .forgotPassword-form-container {
    margin: auto; /* Center the form horizontally */
    margin-top: 10px;
}

/* Right Section (Illustration + Background) */
.forgotPassword-image-container {
    background-image: url('../../../Content/Images/bg_forgotPassword.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

    .forgotPassword-image-container .info-box {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

        .forgotPassword-image-container .info-box h2 {
            color: #6a32e4;
            font-size: 18px;
            margin-bottom: 0.5rem;
        }

        .forgotPassword-image-container .info-box p {
            font-size: 14px;
            color: #555;
        }

        .forgotPassword-image-container .info-box a {
            display: block;
            color: #6a32e4;
            font-size: 14px;
            margin-top: 0.5rem;
            text-decoration: none;
        }

@media (min-width: 1024px) {
    .forgotPassword-form-container {
        max-width: 500px; /* Make it even smaller on larger screens */
    }
}

@media (max-width: 767px) {
    .forgotPassword-form-container {
        max-height: 540px; 
    }
}

.help-section-forgotPassword {
    padding: 20px;
}

.forgot-password-welcome {
    margin-top: 4rem;
}
.p-welcome {
    font-family: Inter;
    font-size: 48px;
    font-weight: 700;
    line-height: 70px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #EEEEEE;
}
.p-name-project {
    font-size: 48px;
    font-weight: 400;
    line-height: 70px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #EEEEEE;
    font-family: 'Times New Roman'!important;
}
