:root {
    --primary-color: #0898a0;
    --hover-color: #0c7a80;
    --ball-color: #0898a02a;
    --text-color: #313131;
    --OSlogo-bg-color: #2d2d2d;
    --bg-color: #fff;
    --white-color: #fff;
    --main-transition: 2s ease-in-out;
    --box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.123);
    --second-shadow: 1px 1px 5px rgba(0, 0, 0, 0.101);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: auto;
    font-family: "DM Sans", sans-serif;
    color: var(--text-color);
}

body {
    overflow-x: hidden;
    font-family: "DM Sans", sans-serif;
    font-size: 62.5%;
}

.wrapper {
    display: flex;
    flex-direction: row;
}

.wrapper div.signup {
    flex-basis: 40rem;
    height: 100vh;
    margin-left: 41rem;
}

.wrapper .container {
    flex-basis: 30rem;
    height: 100vh;
    position: fixed;
    width: 30rem;
    background: var(--primary-color) url("../img/risedots.jpg") no-repeat;
    background-size: cover;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 1rem 2rem 3rem;
}

#logo h1 {
    font-size: 4rem;
    color: var(--white-color);
    position: relative;
    letter-spacing: -.1rem;
    margin-top: 0;
    margin-left: 0;
}

#logo h1 p {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background-color: var(--white-color);
    position: absolute;
    top: 2rem;
    right: 18.5rem;
}

.container h2 {
    font-size: 2.5rem;
    width: 90%;
    line-height: 2.5rem;
    color: var(--white-color);
    display: block
}

/* signup side */

.wrapper .signup {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    gap: 1rem;
}

.signup .signup-heading {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.signup-heading h2 {
    font-size: 1.7rem;
}

.signup-heading p {
    font-size: 1rem;
    width: 50%;
    color: #4b4b4bea;
}

.signup-form form input,
.signup-form button {
    height: 3.51rem;
    width: 23.1rem;
    left: 0px;
    top: 0px;
    border-radius: .3rem;
    padding: 10px, 8px, 10px, 8px;
    margin-top: 16px;
    border: 2px solid #E0e9ee;
    padding: 1rem;
    margin-bottom: 1rem;
    outline: none;
}

.signup-form form input:hover,
.signup-form form input:focus {
    border: 2px solid var(--primary-color);
}

.signup-form button {
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--white-color);
    font-size: 1rem;
    transition: all .1s ease-in;
    cursor: pointer;
}

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

.signup-form form div {
    position: relative;
}

.signup-form p {
    font-size: 1rem;
}

.signup-form p span a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}

.signup-form p span a:hover {
    transform: scale(1.75);
    color: var(--hover-color);
}

/* Password reuirements section */
.password-require {
    margin-top: 5rem;
}

.password-require label {
    font-size: 1rem;
    margin-bottom: 4rem;
}

.password-require input {
    margin-bottom: 2rem;
}


/* Footer */
.footer {
    margin-top: 2rem;
    width: 100%;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer::before {
    content: "";
    width: 100%;
    height: .051rem;
    background-color: #E0e9ee;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.footer p {
    font-size: .85rem;
    width: 100%;
    line-height: 1.3rem;
}


/* reusable components */
#eye {
    position: absolute;
    top: 2rem;
    right: 18.5rem;
    cursor: pointer;
}

.label {
    font-size: .8rem;
    color: #4b4b4bea;
    position: absolute;
    top: 2.4rem;
    left: 1.1rem;
    background-color: #fff;
    padding: 2px;
    transition: .5s all ease;
}

.signup-form form input:focus~.label {
    color: var(--primary-color);
    top: .5rem;
}


/* Login styles */
p.forgot {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}