/* inter-100 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    src: url('../assets/fonts/inter-v13-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-200 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/inter-v13-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v13-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/inter-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../assets/fonts/inter-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/inter-v13-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/inter-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/inter-v13-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    src: url('../assets/fonts/inter-v13-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

.bcGray {
    background-color: gray !important;
}
.bcTransp {
    background-color: transparent;
}

.focusAlert {
    border: 1px solid red !important;
}
html {
    font-family: 'Inter', sans-serif;
}

body {
    width: 100%;
    margin: 0;
    background-color: #f6f7f8;
}
.bodyContent {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainContainer {
    display: flex;
    width: 100%;
}

.w3Sidebar {
    top: 0;
    margin-left: 0;
}

.PasswCont {
    display: flex;
    position: relative;
    width: 100%;
}

.loginMainContent {
    width: 1440px;
    max-height: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f7f8;
}

@keyframes logoAnimation {
    0% {
        transform: scale(1);
        position: absolute;
        top: 170%;
        left: 45%;
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        position: absolute;
        transform: scale(0.5);
        top: 0;
        left: 0;
        opacity: 1;
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.loginLogoFrame {
    position: absolute;
    transform: scale(0.5);
    top: 0 !important;
    left: 0 !important;
    opacity: 1;
}

.transformOpacity {
    animation: contentFadeIn 3s ease-in-out 0s forwards;
    animation-delay: 0;
}
.transformLogo {
    animation: logoAnimation 2s ease-in-out forwards;
    animation-delay: 1s;
}

.loginHead {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 63.5px;
}

.loginLogoPlaceholder {
    width: 177px;
    height: 208px;
}

.loginLogo img {
    position: absolute;
    top: 170%;
    left: 45%;
    width: 200px;
    height: 244px;
    z-index: 99;
}

.loginSignUp {
    margin-right: 122px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginSingUpButton {
    width: 91px;
    height: 49px;
    border: none;
    border-radius: 8px;
    padding: 16px 14px;
    background-color: #2a3647;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    margin-left: 35px;
    cursor: pointer;
}
.loginSingUpButton:hover {
    background-color: #29abe2;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
}

.loginSingUpText {
    font-size: 20px;
    font-weight: 400px;
    line-height: 24px;
}

/* --- LOG IN --- innerContent --- */

.loginMiddleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loginInnerContent {
    margin-top: 275px;
    background-color: white;
    width: 652px;
    height: 493px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginHeadline {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loginHeadlineh1 {
    text-align: center;
    font-size: 61px;
    line-height: 73.2px;
    font-weight: bold;
    margin-bottom: 16px;
}

.loginHeadlineBorder {
    width: 150px;
    border-bottom: 3px solid #29abe2;
    border-radius: 8px;
}

.loginForm {
    display: flex;
    flex-direction: column;
}

.loginInputMail {
    width: 422px;
    height: 48px;
    gap: 8px;
    margin: 16px;
    background-image: url(/assets/img/mail.png);
    background-repeat: no-repeat;
    background-position: 377px 12px;
    background-size: 24px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    text-indent: 21px;
}

.loginInputMail::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #d1d1d1;
    transform: translateY(10%);
}

.inputPassword {
    width: 422px;
    height: 48px;
    gap: 8px;
    margin: 16px 16px 44px 16px;
    background-repeat: no-repeat;
    background-position: right;
    background-position: 377px 12px;
    background-size: 24px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    text-indent: 21px;
}

.passwImg {
    position: absolute;
    right: 43px;
    top: 30px;
}
.inputPassword::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #d1d1d1;
    transform: translateY(10%);
}

.loginCheckBox {
    margin-left: 55px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.loginCheckBoxRememberMe {
    width: 24px;
    height: 24px;
}

.loginCheckBoxRememberMeSpan {
    margin: 0 0 0 4px;
}
#msgBox {
    margin-bottom: 12px;
    margin-top: -16px;
    color: white;
    border-radius: 15px;
    padding: 15px 15px;
    background-color: #2a3647;
}
.loginButton {
    width: 110px;
    height: 48px;
    border: none;
    border-radius: 8px;
    padding: 11px 16px;
    background-color: #2a3647;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    line-height: 25.2px;
    margin-right: 17.5px;
    margin-bottom: 48px;
    cursor: pointer;
}

.loginButton:hover {
    background-color: #29abe2;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
}

.guestLoginButton {
    width: 177px;
    height: 48px;
    border: 1px solid #2a3647;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    line-height: 25.2px;
    margin-right: 17.5px;
    cursor: pointer;
}

.guestLoginButton:hover {
    border: 2px solid #29abe2;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
}

input[id="loginCheckBoxRememberMe"] + label {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #2a3647;
    border-radius: 3px;
    cursor: pointer;
}

input[id="loginCheckBoxRememberMe"]:checked + label:after {
    position: relative;
    content: "\2714";
    font-size: 24px;
    top: -12px;
}
input[id="loginCheckBoxRememberMe"] {
    display: none;
}

.loginCheckBoxRememberMeLabel {
    margin-right: 5px;
    margin-top: -1px;
}

/* Sign in Part */

.signinInnerContent {
    margin-top: 190px;
    background-color: white;
    width: 598px;
    height: 630px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signupHead {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signupVectorImg {
    margin-top: 10px;
    margin-left: -130px;
    margin-right: 110px;
    cursor: pointer;
}

.signinHeadline {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.signinHeadlineh1 {
    text-align: center;
    font-size: 61px;
    line-height: 73.2px;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 35px;
}

.signinHeadlineBorder {
    width: 150px;
    border-bottom: 3px solid #29abe2;
    border-radius: 8px;
    margin-bottom: 10px;
}

.signinForm {
    display: flex;
    flex-direction: column;
}

.signinInputName {
    width: 422px;
    height: 48px;
    margin: 12px;
    background-image: url(/assets/img/person.png);
    background-repeat: no-repeat;
    background-position: 377px 14px;
    background-size: 21px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    text-indent: 21px;
}

.signinInputName::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #d1d1d1;
    transform: translateY(10%);
}

.signinInputMail {
    width: 422px;
    height: 48px;
    margin: 12px;
    background-image: url(/assets/img/mail.png);
    background-repeat: no-repeat;
    background-position: 377px 12px;
    background-size: 24px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    text-indent: 21px;
}

.signinInputMail::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #d1d1d1;
    transform: translateY(10%);
}

.signinPassword {
    width: 422px;
    height: 48px;
    margin: 12px;
    background-repeat: no-repeat;
    background-position: right;
    background-position: 377px 12px;
    background-size: 24px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    text-indent: 21px;
}

.suPasswImg {
    position: absolute;
    right: 38px;
    top: 25px;
    width: 24px;
    height: 24px;
}

.signinPassword::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #d1d1d1;
    transform: translateY(10%);
}

#my-form {
    margin-left: 13px;
    color: #ff8190;
}
.signinCheckBox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
    margin-bottom: 32px;
}

.signinCheckBoxPrivacyPolicy {
    width: 24px;
    height: 24px;
    border: 2px solid #2a3647;
    border-radius: 3px;
}

.signinCheckBoxPrivacyPolicySpan {
    margin: 0 0 0 4px;
    color: #a8a8a8;
}
.sighinLinkPrivacyPolicy {
    margin: 0 0 0 4px;
    color: #29abe2;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.signupButton {
    width: 126px;
    height: 55px;
    border: none;
    border-radius: 8px;
    padding: 15px 24px;
    background-color: #2a3647;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    line-height: 25.2px;
    margin-right: 17.5px;
    margin-bottom: 48px;
    cursor: pointer;
}

.signupButton:hover {
    background-color: #29abe2;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
}

input[id="signinCheckBoxPrivacyPolicy"] + label {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #2a3647;
    border-radius: 3px;
    cursor: pointer;
}

input[id="signinCheckBoxPrivacyPolicy"]:checked + label:after {
    position: relative;
    content: "\2714";
    font-size: 24px;
    top: -12px;
}
input[id="signinCheckBoxPrivacyPolicy"] {
    display: none;
}

.signinCheckBoxPrivacyPolicyLabel {
    margin-right: 5px;
    margin-top: -1px;
}

/* Footer */

.loginFooter {
    height: 100%;
    display: flex;
    align-items: end;
    margin-bottom: 48px;
}

.loginFooterLink {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 12px;
    color: #a8a8a8;
}
.loginFooterLinkPrivacyP {
    cursor: pointer;
    margin-right: 8px;
}
.loginFooterLinkPrivacyP:hover {
    color: #29abe2;
    font-weight: 700;
}
.loginFooterLinkLegalN {
    cursor: pointer;
    margin-left: 8px;
}
.loginFooterLinkLegalN:hover {
    color: #29abe2;
    font-weight: 700;
}

/* start contact-Section*/
.firstLetter {
    width: 352px;
    height: 58px;
    padding: 36px 17px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.singleNameList {
    width: 352px;
    height: 78px;
    margin: 0;
    padding: 24px 15px;
    border: #2a3647 1px solid;
}
.contactPic {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}
