﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    box-sizing: border-box;
}

body {
    background-color: #4070F4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
}


#login_signup_form {
    width: 380px;
    height: auto;
    background-color: white;
    border-radius: 12px;
    font-family: 'Poppins';
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}

#form_title {
    color: black;
    font-size: 22px;
    font-weight: 500;
}

.textbox_inputs {
    width: 100%;
    height: 40px;
    font-family: 'Poppins';
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #cecece;
}

.textbox_inputs.toggle_border_error
{
    border:1px solid red;
}
.textbox_inputs.toggle_border_error:focus
{
    border:2px solid red;
}

.textbox_inputs:focus {
    border: 2px solid black;
    outline: none;
}

.sign_default_button, #login_signup_button, #login_signup_button2, .loginButton{
    width: 100%;
    background-color: #0171D3;
    color: white;
    font-size: 15px;
    margin-top: 15px;
    padding: 5px;
    cursor: pointer;
    border: 0px;
    border-radius: 5px;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}


#go_other_form {
    margin-top: 5px;
}

#have_account {
    font-size: 12px;
    color: black;
}

#go_other_form_a {
    margin-left: 3px;
    text-decoration: none;
    font-size: 14px;
    color: blue;
}

a:visited {
    color: blue;
}


.textbox_container {
    width: 100%;
    position: relative;
    margin-top: 15px;
}

.top_placeholder {
    position: absolute;
    background-color: white;
    color: black;
    font-size: 12px;
    top: 0px;
    left: 0px;
    height: auto;
    transform: translate(7px, -50%);
    padding-bottom: 0px;
    display: none;
    padding-left: 3px;
    padding-right: 3px;
    user-select: none;
}

::placeholder {
    font-size: 13px;
}

:focus
{
    outline:none;
}


.separator_line {
    margin-top: 10px;
    height: 1px;
    width: 80%;
    background-color: #ededed;
}


.lds-roller {
    display: inline-block;
    position: relative;
    background-color:transparent;
    transform:scale(0.5) translateX(-30px);
    height:30px;
    margin-bottom:15px;
    margin-left:auto;
    margin-right:auto;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: black;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}