/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Oct 29, 2023, 6:50:36 AM
    Author     : phanl
*/
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans&family=Roboto:ital,wght@0,300;0,400;0,500;1,300&display=swap');

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    opacity: 1;
    overflow-y: scroll;
    margin: 0;
    background-color: #F5F5F5;
}

html,
body {
    background-color: #FFF;
    height: 100%;
}

form {
    width: 100%;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_box {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 50%;
    margin: auto;
}

.btnLoginWithZalo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 7px;
}

@media only screen and (max-width: 768px) {
    .login_box {
        display: flex;
        flex-direction: column;
        padding: 20px;
        width: 100%;
        margin: auto;
    }
}

#user-logo {
    width: 50%;
}

.login_box > h2 {
    margin-top: 15px;
    text-align: center;
}

.login_box .registry-mesg {
    text-align: center;
    color: #000;
    margin-top: 5px;
    margin-bottom: 15px;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.login_form_control {
    display: flex;
    flex-direction: row;
    background-color: #FAFAFA;
    border-radius: 5px;
    height: 40px;
}

.login_form_control > span {
    background-color: #FAFAFA;
    display: flex;
    align-self: center;
    margin-left: 5px;
    margin-right: 5px;
    width: 30px;
    text-align: center;
    flex-direction: column;
}

.login_form_control > span > img {
    width: auto;
    height: 30px;
    align-self: center;
}

.login_form_control > input {
    outline: none;
    border: none;
    background-color: #FAFAFA
}

.login_form_control > input:focus {
    outline: none;
    border: none;
    background-color: #FAFAFA;
}

.login_box > button {
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: #2E2EDE;
    height: 50px;
    color: #FFF;
}

.is-invalid {
    border: 1px #FF0000 solid;
    color: red;
}

.form-floating {
    position: relative;
}

.icon-container {
    position: absolute;
    top: 35%;
    right: 10px;
    font-size: 20px;
}