body {
    margin: 0;
    font-family: "Inter", sans-serif;
    height: 100vh;
}

.signup-successful-container,
.wrong-password-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(168, 168, 168, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.succesfull-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    background-color: rgba(42, 54, 71, 1);
    border-radius: 20px;
    height: 70px;
    width: 300px;
    transform: translateY(700%);
    transition: transform 1s ease-in-out;
}

.wrong-password {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    background-color: rgba(42, 54, 71, 1);
    border-radius: 20px;
    height: 70px;
    width: 300px;
}

.transform {
    transform: translateY(0%);
}

.d-none {
    display: none;
}

.intro-img {
    animation: moveUp ease-in-out 1500ms;
    animation-fill-mode: forwards;
    width: 100px;
    height: 130px;
    position: absolute;
    top: 40%;
    left: 47%;
    z-index: 10;
}

.intro-img-responsive {
    display: none;
    animation: moveUp ease-in-out 1500ms;
    animation-fill-mode: forwards;
    height: 130px;
    width: 100px;
    position: absolute;
    top: 40%;
    left: 47%;
    z-index: 10;
}

.join-icon-signup {
    position: absolute;
    width: 65px;
    height: 80px;
    top: 60px;
    left: 60px;
}

.background-animation {
    animation: backgroundAnimation ease-in-out 2000ms;
    animation-fill-mode: forwards;
    background-color: #F6F7F8;
    z-index: 5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #F6F7F8;
    display: flex;
    gap: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.not-user-container {
    position: absolute;
    top: 70px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.no-user-text {
    font-size: 20px;
    font-weight: 400;
}

.sign-up-button {
    width: 90px;
    height: 50px;
    Padding: 15px, 16px, 15px, 16px;
    background: rgba(42, 54, 71, 1);
    color: white;
    border-color: transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;

}

.main-container {
    background-color: white;
    width: 550px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 31px rgba(0, 0, 0, 0.04);
}

.main-container-signup {
    background-color: white;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 31px rgba(0, 0, 0, 0.04);
}

.arrow-left-line {
    position: relative;
    top: 100px;
    right: 220px;
}

.arrow-left-line:hover {
    cursor: pointer;
}

.login-headline,
.signup-headline {
    height: 90px;
    font-weight: 700;
    font-size: 61px;
    align-items: center;
}

.blue-seperator {
    height: 3px;
    width: 150px;
    background-color: rgba(41, 171, 226, 1);
    margin-bottom: 5px;
}

.data-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.name-input {
    height: 16px;
    border: 1px solid rgba(209, 209, 209, 1);
    border-radius: 10px;
    outline: unset;
    Padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 21px;
    padding-right: 21px;
    background-image: url('../img/person.png'); 
    background-repeat: no-repeat;
    background-position: 95%;
    font-weight: 400;
    font-size: 20px;
}

.email-input {
    height: 16px;
    border: 1px solid rgba(209, 209, 209, 1);
    border-radius: 10px;
    outline: unset;
    Padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 21px;
    padding-right: 21px;
    background-image: url('../img/mail.png');
    background-repeat: no-repeat;
    background-position: 95%;
    font-weight: 400;
    font-size: 20px;
}

.password-input {
    height: 16px;
    border: 1px solid rgba(209, 209, 209, 1);
    border-radius: 10px;
    outline: unset;
    Padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 21px;
    padding-right: 21px;
    background-repeat: no-repeat !important;
    background-position: 95% !important;
    font-weight: 400;
    font-size: 20px;
}

.password-container {
    position: relative;
    display: flex;
}

#loginPassword, #confirmedPassword, #password {
    width: 100%;
    height: 16px;
    border: 1px solid rgba(209, 209, 209, 1);
    border-radius: 10px;
    outline: unset;
    Padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 21px;
    padding-right: 21px;
    background-repeat: no-repeat;
    background-position: 95%;
    font-weight: 400;
    font-size: 20px;
    background-image: url('../img/lock.png');
}

.toggle-password {
    position: absolute;
    top: 0;
    right: 10px;
    width: 30px;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.toggle-password:hover {
    opacity: 0.7;
}

.phone-input {
    height: 16px;
    border: 1px solid rgba(209, 209, 209, 1);
    border-radius: 10px;
    outline: unset;
    Padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 21px;
    padding-right: 21px;
    background-image: url('../img/call.png');
    background-repeat: no-repeat;
    background-position: 95%;
    font-weight: 400;
    font-size: 20px;
}

::placeholder {
    color: #D1D1D1;
}

.remember-container {
    display: flex;
    gap: 8px;
    padding-left: 40px;
    margin-bottom: 20px;
}

.accept-policy-container {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.accept-text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(168, 168, 168, 1);
}

.accept-policy-checkbox,
.remember-me-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 2px solid #2A3647;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.accept-policy-checkbox:checked,
.remember-me-checkbox:checked {
    background-color: white;
    border: 2px solid #2A3647;
}

.accept-policy-checkbox:checked::after,
.remember-me-checkbox:checked::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 4px;
    width: 6px;
    height: 16px;
    border: solid #2A3647;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.policy-link {
    color: #29ABE2;
    text-decoration: unset;
}

.remember-text {
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
}

.login-buttons-container {
    display: flex;
    gap: 35px;
    padding-left: 48px;
}

.login-button {
    width: 90px;
    height: 40px;
    background: rgba(42, 54, 71, 1);
    color: white;
    font-weight: 700;
    font-weight: 20px;
    border-color: transparent;
    border-radius: 8px;
}

.guest-button {
    width: 140px;
    height: 40px;
    color: rgba(42, 54, 71, 1);
    font-weight: 700;
    font-weight: 20px;
    border: 1px solid rgba(42, 54, 71, 1);
    border-radius: 8px;
}

.help-bottom {
    font-size: 27px;
    font-weight: 700;
    padding: 32px 0 24px 0;
}

.legal-privacy-container {
    display: flex;
    gap: 16px;
}

.privacy-policy-extern {
    text-decoration: unset;
    color: #A8A8A8;
}

.privacy-policy-extern:hover {
    color: #29ABE2;
}

.pointer {
    cursor: pointer;
}

.color-blue-button:hover {
    background-color: #29ABE2;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.color-white-button:hover {
    border-color: #29ABE2;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.correct-incorrect {
    font-size: 12px;
}