﻿LOGINSELECTPAGE 


Main Page color
.login-select-container {
    background-color: #EFF0F6;

}

White Box
.loginSelect-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255);
    max-width: 330px;
    max-height: 270px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 6px;
}

Logo on Page
.landing-header-logo {
    display: flex;
   padding-top: 85px;
    width: 50%;
}


a {
    width: 100%;
    cursor: pointer;
    color: #0321C7;
    font-size: 13px;
}

START - Small grey text
.span-text-small {
    font-size: 13px;
    color: #6C7278;
    display: inline-block;
    flex-wrap: nowrap;

}


.loginSelect-logo {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    width: 50%;
}

START Direct to Sign Up or Login

.inline-block-elements-psw {
    display: flex;
    justify-content: space-evenly;
  
}

.inline-block-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.form-control-text-span {
    font-size: 14px;
}

.form-control-text-span a{
    font-size: 14px;
}

.checkbox-margin {
    margin-right: 8px;
    
}

    .inline-block-elements p, .inline-block-elements a {
        display: inline;
        margin: 0;  Remove margins to keep them on the same line 
        padding: 10px;
    }

    .inline-block-elements a {
        font-weight: 700;
    }


    END Direct to Sign Up or Login
    CHECK if login-select-register is used in any other code except  LoginSelectPage, if not used remove
    .login-select-register {
        display: block;
        position: absolute;
        bottom: 3rem;
        width: 100%;
        padding-right: 40px;
        text-align: center;
    }

    .login-select-register a {
        display: block;
        width: 100%;
        cursor: pointer;
        color: #7f56d9;
        font-size: 18px;
    }

ABOVE CODE NOT USED IN LOGINSELECT, CLEAN UP


    LOGIN PAGE

.login-logo {
    display: flex;
    align-items: center;
    width: 50%;
}

White Box
.loginWhite-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255);
    max-width: 330px;
    max-height: 4200px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.anchor-forgotpsw-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.anchor-forgotpsw {
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 7px;
    justify-content: flex-end;
    cursor: pointer;
    padding-left: 15px;
}
button for show password on register
.btn-passw-show {
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding-bottom: 10px;
    padding-left: 8px;
}

button for show password on register
.btn-passw-show-login {
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding-bottom: 0px;
    padding-left: 8px;
    margin-top: 7px;
}

SIGNUP PAGE
.registerWhite-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255);
    max-width: 330px;
    max-height: 670px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.signup-header-logo {
    height: 3rem
}


.signup-header-button-group {
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

    .signup-header-button-group button {
        display: block;
        border-radius: 5px;
        height: 35px;
        width: 35%;
    }

        .signup-header-button-group button:first-child {
            margin-right: 5px;
        }

        .signup-header-button-group button.active {
            background-color: #6941c6;
            border-color: #6941c6;
        }

eye on input at Login & Register
.btn-passw-show-eye {
    position: absolute;
    right: 15px;
    top: 53%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    font-size: 1.7em;
    color: #6C7278;
}

.password-input-container {
    position: relative;
}

.btn-passw-show-eye-reg {
    position: absolute;
    right: 15px;
    top: 42%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    font-size: 1.7em;
    color: #6C7278;
}