body{
    margin: 0;
    padding: 0;
    background: rgb(240,244,249);
}

.login_main_cnt{
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
}

.login_box{
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.064);
    padding: 2%;
    border-radius: 20px;
    gap: 10px;
}

.login_box input{
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.459);
    background: rgb(240,244,249);
    width: 350px;
    height: 35px;
    padding-left: 20px;
    font-size: 12px;
}

.sign_log_btn{
    border: none;
    padding: 2%;
    background: rgb(209, 239, 255);
    border-radius: 20px;
    font-size: 15px;
    color: rgb(58, 58, 58);
    cursor: pointer;
    transition: background 0.3s ease;
}

.sign_log_btn:hover{
    background: rgb(173, 216, 230);
}

.email_google_partition{
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.363);
    height: 1.3px;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.email_google_partition span{
    margin-top: -5px;
    background: white;
    width: 20px;
    text-align: center;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.715);
}

.google_login_btn{
    border: none;
    background: rgb(0, 81, 255);
    padding: 3%;
    border-radius: 5px;
    color: white;
    margin-top: 15px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.google_login_btn:hover{
    background: blue;
}

