.sign-up-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding: .7rem;
    justify-content: center;
    align-items: center;
}

.sign-up-half {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}  
.big-head {
    font-size: 40px;
    font-weight: 600;
    color: white;
}
.big-head-sub-text {
    color: white;
    font-size: 17px;
    margin-top: 1rem;
}
.sign-up-header-text h1 {
    font-size: 24px;
    color: var(--cool-black);
}
.sign-up-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.sign-up-logo img {
    width: 40px;
}
.sign-up-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sign-up-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}
.sign-up-input-wrapper label {
    font-size: 15px;

}
.sign-up-box {
    width: 400px;
}
.sign-up-inputs, .sign-up-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.primary-button {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 40px;
   font-size: 15px;
}   
.sign-up-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    position: relative;
    margin-bottom: 1rem;
}
.sign-up-div::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 1px;
    background-color: rgb(201, 201, 201);
    left: 0;
}
.sign-up-div::before {
    position: absolute;
    content: '';
    width: 30%;
    height: 1px;
    background-color: rgb(201, 201, 201);
    right: 0;
}
.second-option {
    margin-top: 1rem;
}
.sign-up-google-btn {
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: .5rem 0;
    border-radius: 10px;
    font-size: 15px;
    height: 40px;
    box-shadow: 0px 1px 3px 0px rgba(26, 29, 40, 0.1);
    border: 1.8px solid rgb(201, 201, 201);
    transition: border-color .4s ease;
    font-weight: bold;
    color: var(--cool-black);
}
.sign-up-google-btn img {
    width: 17px;
}
.sign-up-google-btn:hover {
    border-color: #1E90FF;
}
.sign-up-img-wrapper {
    width: 100%;

    margin-top: 3rem;
    overflow: hidden;
}
.sign-up-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    object-position:50% 50%; 
}
.sign-up-input-wrapper::after {
    content: attr(infoText);
    color: #4a5568;
    position: absolute;
    font-size: 13px;
    bottom: -23px;
    width: 100%;
    left: 0;
    transition: opacity .4s ease, color .4s ease;
}
#password-input-wrapper::after {
    opacity: 0;
}
#password-input-wrapper.focus::after {
    opacity: 1;
}
#password-input-wrapper.errorTt::after {
    opacity: 1;
    color: red;
}
#password-input-wrapper.sucTt::after {
    opacity: 1;
    color: #10b981;
}
.password-input-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#password-input-show {
    font-size: 12px;
    text-decoration: underline;
    color: #1E90FF;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    user-select: none;
    transition: opacity .4s ease;
}
#password-input-show.active {
    pointer-events: all;
    opacity: 1;
}
#email-input-wrapper::after {
    opacity: 0;
}
#email-input-wrapper.errorTt::after {
    opacity: 1;
    color: red;
}
.exi-user {
    font-size: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.exi-user a {
    color: #1E90FF;
}