body {
    display: flex;
    background: var(--background-color);
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    min-height: 720px;
}

main {
    background-color: var(--background-color);
    height: 100vh;
    min-height: 720px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

header {
    height: 90px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header span {
    margin-left: 200px;
}

header div {
    margin: 16px;
    display: flex;
    align-items: center;
}

header img:hover {
    transform: scale(1.2);
}

#mainContent {
    margin: 50px;
}

.logo {
    position: absolute;
    width: 80px;
    top: 50px;
    left: 50px;
    height: 96px;
    z-index: 1;
}

#legal a {
    display: flex;
    align-items: center;
    margin: 5px 0;
    text-decoration: none;
    color: #A8A8A8;
    /* padding: 8px; */
    /* padding-left: 45px; */
    text-wrap: nowrap;
}

#legal {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    bottom: 20px;
    gap: 50px;
}

#legal a:hover {
    color: #29ABE2;
    font-weight: bold;
}

.legalText {
    font-size: 12px;
}

.createAccountDiv {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    width: fit-content;
    border-radius: 30px;
    padding: 20px 40px;
    box-shadow: 00px 00px 15px rgba(0, 0, 0, 0.05);
}

.loginButtonDiv {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.loginInput {
    border: solid 1px #D1D1D1;
    border-radius: 10px;
    height: 46px;
    border-width: 1px;
    width: 375px;
    font-size: 20px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding: 0px 20px;
    margin: 0px 0px;
    outline: none;
}

.marginRight5px {
    margin-right: 5px;
}

.loginInput::placeholder {
    color: #D1D1D1;
}

.loginInputDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.accountHeader {
    font-size: 55px;
    font-weight: bold;
    text-decoration: underline 3px var(--text-underline-color);
    text-underline-offset: 20px;
    position: relative;
    top: -25px;
}

.blueBtn {
    background-color: var(--primary-color);
    color: white;
    font-size: 21px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    height: 48px;
    width: fit-content;
    padding: 0px 20px;
    cursor: pointer;
}

.blueBtn:hover {
    background-color: var(--text-underline-color);
    box-shadow: 00px 3px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.1s ease-in-out;
}

.blueBtn:disabled,
.blueBtn:disabled:hover {
    background-color: gray;
    box-shadow: 00px 0px 00px rgba(0, 0, 0, 0.25);
    cursor: auto;
}

.whiteBtn {
    background-color: white;
    color: black;
    font-size: 21px;
    font-weight: bold;
    border: solid 1px var(--primary-color);
    border-radius: 10px;
    height: 48px;
    width: fit-content;
    text-wrap: nowrap;
    padding: 0px 20px;
}

.whiteBtn:hover {
    box-shadow: 00px 3px 10px rgba(0, 0, 0, 0.25);
    border-color: var(--text-underline-color);
    color: var(--text-underline-color);
    transition: all 0.1s ease-in-out;
}

#acceptPrivacy {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 20px 0px;
}

#acceptPrivacyPolicy:hover {
    cursor: pointer;
    background-color: #eeeeee;
    border-radius: 1rem;
}

.linkPrivacyPolicy {
    color: var(--text-underline-color);
    text-decoration: none;
}

#backToLogin {
    position: relative;
    left: -200px;
    top: 30px;
    cursor: pointer;
}

#backToLogin:hover {
    background-color: #eeeeee;
    border-radius: 1rem;
}

#acceptPrivacyPolicy {
    margin-right: 10px;
}

.inputDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding-left: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.inputImg {
    position: relative;
    right: 45px;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
}


input[type=text]:focus {
    border-color: var(--text-underline-color);
}

input[type=password]:focus {
    border-color: var(--text-underline-color);
}

.redBorder {
    border-color: red;
}

.errorSpan {
    height: 14px;
    font-size: 10px;
    color: red;
    padding-left: 95px;
    visibility: hidden;
    width: 100%;
    /* background-color: blue; */
}

.errorSpan.visible {
    visibility: visible;
}

.textcenter {
    text-align: center;
    padding-left: 0;
}

.signUpSuccess {
    /* position: absolute; */
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 20px 20px;
}

.animation {
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    z-index: 2;
    position: absolute;
}

.displayNone {
    display: none;
}

.disabled {
    cursor: auto;
}

.disabled:hover {
    cursor: auto;
    box-shadow: none;
    background-color: var(--primary-color);
}