@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}


:root {
    --website-primary: #ED2955;
    --website-secondary: #F0C354;
    --website-header: #F7E1A9;
    --website-detected-button: #FBF0D4;
    --website-translation-button: #D6E3F5;
}

/* --------------- login page start here --------------- */
#login_page {
    width: 100%;
    height: 100vh;
    background-image: url('../images/background_img.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#register_page {
    width: 100%;
    height: auto;
    background-image: url('../images/background_img.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_register_container {
    width: 600px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 10px #ED29553b);
    padding: 50px 70px;
    margin: 80px;
}

.toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
}
.password_icon{
    float: left;
    padding: 0px 10px;
}
.input_field {
    border: 1px solid #ced4da;
    border-radius:7px;
    padding: 5px;
}

.input_field:focus-within {
    border-color: #2b2b2b;
}

.form-group{
    width: 100%;
}
.form-group input{
    border: none;
}
.form-group input:focus{
    box-shadow: none;
}
.form-group textarea{
    border: none;
}
.form-group textarea:focus{
    box-shadow: none;
}
.form-group select{
    border: none;
}
.form-group select:focus{
    box-shadow: none;
}


.login_register_container a{
    color: var(--website-primary);
    text-decoration: none;
    font-weight: 700;
    padding: 20px 0px;
}

#global_button{
    width: 100%;
    height: auto;
    background: var(--website-primary);
    color: #ffffff;
    padding:12px;
    border: none;
    border-radius: 10px;
}
#global_button:hover{
    background: #1064da;
    transition: .5s;
    /* box-shadow: 2px 3px 10px #086fc3a1; */
}

@media only screen and (max-width:1000px) and (min-width:100px) {
    .login_register_container {
        padding: 30px;
        margin: 20px;
    }
}
.all-icon{
    width: 25px;
    height: auto;
}

/*

