/* login ---------------------------------------------------------------------- */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--maincolor);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 0.1s 1s ease-in-out forwards;
}

.overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 265px;
    height: 323.1px;
    animation: logoMove 1.3s ease-in-out forwards;
}

@keyframes logoMove {
    0%,
    66% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 265px;
        height: 323.1px;
        opacity: 1;
    }

    100% {
        top: 80px;
        left: 77px;
        transform: translate(0, 0);
        width: 100.03px;
        height: 121.97px;
        opacity: 1;
        animation-delay: 1s;
        animation-duration: 0.3s;
    }
}

/*login.html*/
.mainLoginContainer {
    min-height: 100vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loginPage {
    position: relative;
    min-width: 280px;
    padding: 10px;
    max-width: 900px;
    width: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-height: 100vh;
}

.loginHeader {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 10px;
    height: 70px;
}

.loginHeader img {
    position: fixed;
    top: 80px;
    left: 77px;
    width: 100.03px;
    height: auto;
}

.noJoinUser {
    position: absolute;
    display: flex;
    align-items: center;
    top: 80px;
    right: 77px;
    gap: 30px
}

.noJoinUser span {
    width: 200px;
    height: 28px;
    font-family: Open Sans;
    font-size: 23px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
}

.loginPageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 100vh;
}

.loginContainer {
    min-width: 700px;
    min-height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 30px;
    gap: 39px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 3px #00000014;
    padding: 40px;
    margin: 10px auto;
}

.loginHeadline {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 74px;
    gap: 16px;
    padding-top: 30px;
    margin-bottom: 30px;
}

.seperator {
    width: 150px;
    background: #4589FF;
    border: 2px solid #4589FF;
    border-radius: 10%;
}

.h1Login {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0px;
}

.loginForm {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.inputField {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 90%;
    height: 80px
}

.input {
    cursor: pointer;
    width: 100%;
    height: 48px;
    font-size: 18px;
    border: unset;
    color: black;
    border-bottom: 1px solid #D1D1D1;
    padding-left: 12px;
}

input::placeholder {
    color: #D1D1D1;
}

.passwordError {
    width: 90%;
    display: none;
    color: red;
    font-size: 14px;
    margin-top: -10px;
    text-align: left;
}

.msgError {
    width: 90%;
    color: red;
    font-size: 14px;
    margin-top: -5px;
    text-align: left;
    font-size: 12px;
}

.inputField input.error {
    border-bottom: 1px solid red;
}

.inputImage {
    width: 24px;
    height: 24px;
    margin-left: -50px;
}

.input:focus {
    outline: none;
}

.loginCheckboxContainer {
    width: 90%; 
    padding: 20px 0; 
}

.loginCheckboxContainer label {
    display: flex;
    align-items: center; 
    gap: 10px;
}

.checkboxImage {
    cursor: pointer;
    border: unset;
    border-radius: 3px;
    background-color: white;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.checkboxImage:hover {
    background-color: var(--lightBlue);
    box-shadow: 0 0 0 1px var(--lightBlue);
}

.hiddenCheckbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.rememberMe {
    width: 90%;
    height: 23px;
    cursor: pointer;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-top: -60px;
}

.underlinedTextButton {
    height: 19px;
    top: 2px;
    left: 200px;
    gap: 10px;
}

.textRemember {
    width: 158px;
    height: 19px;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
}

.buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding-bottom: 10px;
}

.legalNotes {
    position: fixed;
    bottom: 30px;
    width: 240px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 820px) {
    .loginPage {
        padding: 15px;
    }

    .loginContainer {
        min-width: 760px;
    }

    .loginHeader img {
        position: fixed;
        top: 80px;
        left: 77px;
        width: 100.03px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .loginPage {
        padding: 15px;
    }

    .loginContainer {
        min-width: 650px;
    }
}

@media (max-width: 650px) {
    .loginPage {
        padding: 15px;
    }

    .loginContainer {
        min-width: 500px;
        margin: 0;
        margin-top: -50px;
    }

    .loginHeader img {
        position: fixed;
        top: 50px;
        left: 60px;
        width: 100px;
        height: auto;
    }

    .h1Login {
        font-size: 44px;
    }

    .buttonContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 35px;
    }

    .noJoinUser {
        display: flex;
        align-items: center;
        gap: 30px;
        bottom: 80px;
        top: unset;
        right: unset;
        margin-top: 20px;
    }

    .blueBtn {
        font-size: 20px;
        width: 197px;
    }
}

@media (max-width: 540px) {
    .loginPage {
        margin-top: -50px;
        padding: 0 20px;
    }
    .loginHeader {
        margin-top: 80px;
    }

    .loginHeader img {
        position: fixed;
        top: 20px;
        left: 30px;
        width: 80px;
        height: auto;
    }

    .loginContainer {
        min-height: 450px;
        min-width: 500px;
        padding: 20px 10px;
    }

    .loginHeadline {
        margin-top: -30px;
        margin-bottom: 0;
        padding-top: 0;
    }

    .h1Login {
        font-size: 42px;
    }

    .loginForm {
        margin-top: -30px;
    }

    .checkboxContainer {
        padding: 20px 0;
    }

    .loginCheckboxContainer {
        margin: 10px;
        padding: 20px 0;
    }

    .buttonContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        margin-top: -30px;
        padding: 0;
        gap: 25px;
    }

    .blueBtn {
        font-size: 20px;
        width: 150px;
    }

    .greyBorderBtn {
        font-size: 20px;
        width: 150px;
    }

    .noJoinUser { 
        width: 350px;
        bottom: 50px;
    }

    .legalNotes {
        margin-bottom: -20px;
    }
}

@media (max-width: 480px) {
    .loginPage {
        padding: 10px;
    }

    .loginContainer {
        min-width: 370px;
        padding: 20px 5px;
        gap: 20px;
        margin: 10px auto;
    }

    .loginHeadline {
        padding: 0;
    }

    .loginHeader {
        margin-top: 10px;
    }

    .loginHeader img {
        width: 80px;
        height: auto;
        top: 40px;
        left: 40px;
    }

    .loginForm {
        margin-bottom: 0;
    }

    .input {
        font-size: 14px;
    }

    .rememberMe {
        margin-top: -20px;
    }

    .buttonContainer {
        margin: 0;
    }
}

@media (max-width: 414px) {
    .loginContainer {
        min-width: 380px;
        gap: 20px;
        margin-top: -50px;
    }

    .loginHeadline {
        margin-top: 10px;
        margin-bottom: 0;
        padding: 0;
    }

    .loginHeader {
        margin-top: 20px;
    }

    .loginHeader img {
        width: 80px;
        height: auto;
        top: 20px;
        left: 20px;
    }

    .loginForm {
        min-height: 160px;
    }

    .rememberMe {
        margin-top: -30px;
    }

    .buttonContainer {
        gap: 20px;
        margin-top: 20px;
    }

    .blueBtn {
        font-size: 20px;
        width: 150px;
    }

    .greyBorderBtn {
        font-size: 20px;
        width: 150px;
    }

    .noJoinUser {
        width: 300px;
        margin-top: 40px;
        gap: 0;
    }

    .noJoinUser span {
        font-size: 18px;
    }

}

@media (max-width: 390px) {
    .loginContainer {
        min-width: 320px;
        min-height: 420px;
        gap: 50px;
        padding: 0;
        margin-top: -20px;
    }

    .loginHeader {
        margin-top: 50px;
    }
}

@media (max-width: 375px) {
    .loginPage {
        margin-top: -40px;
    }
    .loginContainer {
        min-width: 320px;
        min-height: 420px;
        gap: 50px;
        padding: 0;
        margin-top: -20px;
    }

    .loginHeadline {
        margin-top: 10px;
        margin-bottom: 0;
        padding: 0;
    }

    .loginHeader {
        margin: 0;
    }
    .loginHeader img {
        width: 70px;
        height: auto;
        top: 20px;
        left: 20px;
    }

    .seperator {
        margin-top: -20px;
        width: 80px;
    }

    .input {
        font-size: 14px;
        width: 100%;
        padding-left: 10px;
    }

    .blueBtn {
        font-size: 18px;
        width: 150px;
    }

    .greyBorderBtn {
        font-size: 18px;
        width: 150px;
    }

    .inputImage {
        width: 16px;
        height: 16px;
        margin-left: -30px;
    }

    .h1Login {
        font-size: 32px;
    }

    .loginForm {
        margin-top: -50px;
    }

    .checkboxLoginContainer {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .buttonContainer {
        flex-direction: column;
        gap: 10px;
    }

    .rememberMe {
        margin-top: -40px;
    }

    .buttonContainer {
        gap: 10px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .noJoinUser {
        width: 250px;
        margin-top: 20px;
        bottom: 40px;
    }

    .noJoinUser span {
        font-size: 16px;
    }

    .legalNotes {
        bottom: 25px;
    }
}

@media (max-width: 360px) {
    .loginContainer {
        min-width: 320px;
        min-height: 420px;
        padding: 20px 5px;
        gap: 20px;
    }

    .loginHeadline {
        margin-top: 0;
    }

    .loginForm {
        margin-top: 0;

    }

    .blueBtn {
        font-size: 18px;
        width: 150px;
    }

    .greyBorderBtn {
        font-size: 18px;
        width: 150px;
    }
}

/* sign up -------------------------------------------------------------- */
.body {
    margin: 0;
}

.signupContainer { 
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--maincolor);
}

.signupPage {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.signupContent {
    max-width: 650px;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 610px;
    margin-top: -50px;
    border-radius: 30px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 3px #00000014;
}

.headlineContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.signupHeadline {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 74px;
    gap: 16px;
    padding-top: 30px;
    margin-bottom: 30px;
    flex: 1;
}

.signupHeader {
    height: 70px;
    margin-top: 0px;
}

.signupHeader img {
    position: fixed;
    top: 50px;
    left: 50px;
    width: 90px;
    height: auto;
}

.signinForm {
    width: 422px;
    height: 284px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.signupHeadline {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 315px;
    height: 74px;
    gap: 16px;
    font-family: Open Sans;
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0em;
}

.privacy-policy-link {
    color: #4589FF;
    cursor: pointer;
    text-decoration: none;
}

.legalNotesNegative {
    position: fixed;
    bottom: 30px;
    width: 240px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--maincolor);
}

.legalNotesNegative button {
    cursor: pointer;
    width: 150px;
    height: 35px;
    top: 946.3px;
    left: 732px;
    padding: 8px;
    gap: 8px;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    background-color: var(--maincolor);
    text-align: center;
    border: unset;
    color: white;
}

.legalNotesNegative button:hover {
    color: var(--hoverBlue);
}

.checkboxContainerSignup {
    width: 90%;
    height: 23px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.checkboxContainerSignup:hover .checkboxImage {
    background-color: var(--lightBlueHover);
    padding: 0.3px;
    transition: background-color 0.3s ease-in-out;  
}

.checkboxContainerSignup:hover .privacy-policy-link { 
    font-weight: 600;
    text-decoration: underline;
    transition: background-color 0.3s ease-in-out;  
}

.btn-Sign-up {
    width: 200px;
}

.acceptPolicy img:hover {
    background-color: var(--lightBlueHover);
    padding: 0.2px;
}

.acceptance {
    width: 250px;
    height: 20px;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.checkbox {
    cursor: pointer;
    border: unset;
    background-color: white;
}

@media (max-width: 820px) {
    .signupContent {
        max-width: 760px;
    }

    .signupHeader {
        margin-top: 0px;
    }

    .signupHeader img {
        position: fixed;
        top: 50px;
        left: 50px;
        width: 90px;
        height: auto;
    }

    .acceptPolicy {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}


@media (max-width: 768px) {
    .signupPage {
        max-height: 650px;
        padding: 15px;
    }

    .signupContent {
        max-width: 650px;
        padding: 20px 10px;
    }

    .acceptPolicy {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 650px) {
    .signupContent {
        margin: 0;
        margin-top: -50px;
    }
}

@media (max-width: 540px) {
    .signupContent {
        max-width: 500px;
        max-height: 450px;
        padding: 20px 10px;
        margin-top: 20px;
    }

    .signupHeader {
        margin-top: 80px;
    }

    .headlineContainer {
        margin-top: -20px;
    }

    .signupHeader img {
        position: fixed;
        top: 30px;
        left: 30px;
        width: 80px;
        height: auto;
    }

    .inputField {
        height: 60px;
    }

    .buttonContainer {
        margin: 0;
        flex-direction: column;
    }

    .acceptPolicy {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .legalNotesNegative {
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .signupContent {
        max-width: 390px;
        padding: 20px 5px;
        margin-top: -80px;
    }
}

@media (max-width: 414px) {
    .signupPage {
        max-height: 500px;
    }

    .signupHeader img {
        position: fixed;
        top: 30px;
        left: 30px;
        width: 80px;
        height: auto;
    }

    .signupContent {
        max-width: 370px;
        padding: 20px;
        margin-top: -40px;
    }

    .headlineContainer {
        margin-top: -50px;
        height: 180px;
    }

    .loginForm {
        margin-bottom: 10px;
    }

    .acceptPolicy {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .msgError {
        margin: 0;
    }
}

@media (max-width: 375px) {
    .signupContent {
        max-height: 450px;
        margin-top: -80px;
        max-width: 320px;
        padding: 0;
    }

    .signupHeader img {
        position: fixed;
        top: 20px;
        left: 20px;
        width: 60px;
        height: auto;
    }

    .loginForm {rgin-bottom: 10px;
    }

    .acceptPolicy {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 360px) {
    .signupContent {
        padding: 20px 5px;
        gap: 20px;
    }
}

@media (min-width: 800px) {
    .btn-Sign-up {
        width: auto;
    }
}

/* Successful Signup ----------------------------------------------------- */
.signupModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;  
    background-color: rgba(255, 255, 255, 0.8); 
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.8); 
}

.modal-content {
    cursor: pointer; 
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    border-radius: 20px;
    border: unset;
    background-color: var(--maincolor);
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: white;
    margin: 15% auto;
    padding: 20px;
    width: 40%;
}

@media (max-width: 600px) {
    .modal-content {
        width: 80%;  
    }
}

/* Help */
.step-by-step-guide .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    margin-top: 10px;
    font-size: 33px;
    font-weight: 700;
    color: var(--maincolor);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100%;
    min-width: 50px;
}