* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.bgPrimaryContainer {
    height: 450px;
    background-color: var(--bgPrimary);
    display: flex;
    justify-content: center;
}

.mainLogo {
    position: absolute;
    top: 15%;
}

.indexPageContainer {
    height: 70vh;
}

.signInContainer {
    width: 450px;
    padding: 40px 20px;
    background-color: white;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -15%);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: .35em;
}

.signInInputContainers {
    margin: 30px 0 0 0;
}

.signInInput {
    outline: none;
    border: solid 1px var(--grey4);
    height: 40px;
    padding: 0 10px;
    font-size: var(--size-title);
    color: var(--grey2);
}

.signInForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}

.forgotPass {
    color: var(--secondary);
    font-weight: 300;
}

.signInButton {
    height: 40px;
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    font-weight: bold;
    margin-top: 20px;
}


/* -------------- for footer ----------------- */
.footerContainer {
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    gap: 5px;
    color: var(--grey3);
    position: absolute;
    transform: translate(70%, 100px);
}


/* ---------- reset password --------- */
.resetPassContainer {
    width: 450px;    
    padding: 40px 20px;
    background-color: white;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -15%);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: .35em;
}
