:root {
    --orange: #FF7A00;
    --pink: #FF5EB3;
    --blue: #6E52FF;
    --violet: #9327FF;
    --babyblue: #00BEE8;
    --body-background: #F6F7F8;
    --ligh-tgreen: #1FD7C1;
    --dark-orange: #FF745E;
    --brown: #FFA35E;
    --pink: #FC71FF;
    --med-orange: #FFC701;
    --med-blue: #0038FF;
    --emailblau: #007CEE;
    --neon-green: #C3FF2B;
    --yellow: #FFE62B;
    --light-red: #FF4646;
    --light-orange: #FFBB2B; 
    --deep-grey: #2A3647;
    --deepest-grey: #091931;
    --button-hover: #29ABE2;
    --footer-grey: #A8A8A8;
    --black: #000000;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter';
    background-color: var(--body-background);
    width: 100%;
    margin: 0 auto;
}

.cursor-pointer {
    cursor: pointer;
}

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

.margin-left-10 {
    margin-left: 10px;
}

.login {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin-top: 50px;
}

form.login-frontpage {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.d-non {
    display: none;
}

.checkbox-login, .checkbox-policy {
    cursor: pointer;
}

.remember-login {
    display: flex;
    align-items: center;
    margin-left: 39px;
    gap: 8px;
}

button.login-button-frontpage {
    width: 110px;
    height: 48px;
    background-color: #091931;
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
}

button.login-button-frontpage:disabled {
    background-color: #2A3647;
    cursor: not-allowed;
}

button.guest-button-frontpage {
    width: 177px;
    height: 48px;
    color: var(--deepest-grey);
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--deepest-grey);
    font-size: 1rem;
    font-weight: bold;
    margin-left: 8px;
}

button.guest-button-frontpage a {
    text-decoration: none;
    color: var(--deepest-grey);
}

#loginButton:hover {
    background-color: var(--babyblue);
}

#guestLoginButton:hover {
    border: 1px solid var(--babyblue);
    color: var(--babyblue);
}

p.privacy-link a {
    color: var(--babyblue);
    text-decoration: none;
}

p.privacy-link a:hover {
    color: var(--babyblue);
    text-decoration: none;
    font-weight: bold;
}

.guest-button-frontpage:hover,
button#guestLoginButton a:hover {
    color: var(--babyblue);
}

h2 {
    font-family: 'Inter';
    font-size: 61px;
    font-weight: 700;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.login_center {
    background-color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 652px;
    border-radius: 16px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    padding: 32px 0;
}

.hundertVh {
    height: 80vH;
}

#animated-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 600px;
    transform: translate(-50%, -50%);
    animation: scale-and-move 2s forwards;
    margin-top: 80px;
    margin-left: 77px;
}

@keyframes scale-and-move {
    0% {
        width: 500px;
        height: 600px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        width: 100px;
        height: 122px;
        top: 0;
        left: 0;
        transform: translate(0, 0) scale(1);
    }
}

@-webkit-keyframes scale-up-hor-center {
    0% {
      -webkit-transform: scaleX(0.4);
              transform: scaleX(0.4);
    }
    100% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
  }
  @keyframes scale-up-hor-center {
    0% {
      -webkit-transform: scaleX(0.4);
              transform: scaleX(0.4);
    }
    100% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
  }

.scale-up-hor-center {
	-webkit-animation: scale-up-hor-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-hor-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.buttons-frontpage {
    margin-top: 32px;
    display: flex;
}

.underline-frontpage {
    border-bottom: 3px solid #29ABE2;
    height: 3px;
    width: 90px;
    padding-top: 18px;
    text-align: center;
    margin: 0 auto;
}

input {
    outline: none;
    border: none;
}

.flex-input {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 10px;
    padding: 12px 21px;
    gap: 10px;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#signupWindow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup_center {
    width: 500px;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.signup-frontpage {
    height: 256px;
}

.signup-frontpage input {
    width: 422px;
    gap: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.accept-policy .checkbox-policy p {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-weight: 400px;
    font-size: 16px;
    line-height: 19.2px;
}

.accept-policy input {
    display: flex;
    align-items: center;
    /* margin-bottom: 15px; */
    /* margin-right: 10px; */
    margin: 0px 8px 0px 0px;
}

.accept-policy a {
    color: #29ABE2;
    text-decoration-line: none;
}

.signup-button-frontpage {
    width: 126px;
    height: 55px;
    background-color: #2A3647;
    color: white;
    padding: 15px, 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 21px;
    line-height: 25.2px;
    font-weight: 700;
}

/* Spielerei: Nur für den Fall das Privacy Policy nicht akzeptiert wird */
/* .signup-button-frontpage:disabled {
    background-color: #ddd;
    cursor: not-allowed;
} */

input {
    outline: none;
}

input[type="text"],
input[type="password"] {
    background-color: transparent; 
    border: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
    background-color: transparent; 
    outline: none; 
    border: none;
}

input:-internal-autofill-selected {
    background-image: none !important;
    background-color: white;
}

.error-message {
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--light-red);
    padding: 16px;
    border-radius: 12px;
}

footer {
    position: fixed;
    display: flex;
    justify-content: center;
    bottom: 40px;
    left: 0;
    right: 0;
}

li.footer-links a {
    font-family: 'Inter';
    font-weight: 400;
    color: var(--footer-grey);
    font-size: 16px;
    line-height: 19.2px;
    text-decoration: none;
    padding: 8px;
    gap: 8px;
}

ul.footer-links {
    display: flex;
}

li.footer-links a:hover {
    font-weight: bold;
    color: var(--babyblue);
}

.header-top {
    height: 96px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 32px;
    gap: 35px;
    margin-right: 32px;
}

span.subheader-login {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
}

.join_logo {
    height: 121px;
    width: 100px;
    margin: 60px;
}

.policies {
    font-size: 16px;
    margin-left: 60px;
    color: #C5C6C6;
    
}

.policies:hover {
    cursor: pointer;
    color: #00BEE8;
    transform: scale(1.1);
}

button.signup {
    color: var(--white);
    background-color: var(--deepest-grey);
    font-weight: 700;
    padding: 15px 16px;
    border-radius: 8px;
    font-family: 'Inter';
    cursor: pointer;
}

button.signup a {
    color: var(--white);
    text-decoration: none;
}

button.signup:hover {
    background-color: var(--babyblue);
}

#signup-password-Image {
cursor: pointer;
}

#confirm-signup-password-Image {
cursor: pointer;
}

.toast-text {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.d-none {
    display: none;
}

.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        opacity: 1;
    }
}


.slide-out-right {
    -webkit-animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
            animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-right {
    0% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0;
    }
}
@keyframes slide-out-right {
    0% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0;
    }
}

.toast {
    background-color: var(--deepest-grey);
    color: var(--white);
    border-radius: 20px;
    z-index: 99;
    width: 320px;
    height: 60px;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
 }

.toast-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}