/*
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 : Jul 31, 2023, 1:18:52 PM
    Author     : phuan
*/
.d-none {
    display: none;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-md-4 {
    flex: 0 0 45%;
    max-width: 45%;
}
@media (max-width: 767px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
#form-register{
    max-width: 550px;
    background: rgba(0, 0, 0 , 0.8);
    flex-grow: 1;
    padding: 26px 30px 45px;
    box-shadow: 0px 0px 17px 2px rgba(255, 255, 255, 0.8);
    z-index: 10;
}
#verification-email{
    max-width: 400px;
    background: rgba(0, 0, 0 , 0.8);
    flex-grow: 1;
    padding: 30px 30px 40px;
    box-shadow: 0px 0px 17px 2px rgba(255, 255, 255, 0.8);
    z-index: 10;
}
.resend-email {
    margin: 0.5rem;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
.r-form-group{
    margin: 0 10px;
    padding: 20px 0;
    line-height: 20px;
}
.r-form-group i{
    color: #fff;
    font-size: 16px;
    padding-top: 5px;
    padding-right: 10px;
}
.v-form-group{
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    line-height: 50px;
}
.v-form-input{
    text-align: center;
    font-size: 30px;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    border-bottom: 1px solid #fff;
    margin: 1rem;
    outline: none;
    color: #f5f5f5;
    width: 1rem;
    height: 50px;
    flex-grow: 1;
}
.r-form-input {
    display: flex;
    border-bottom: 1px solid #fff;
}
.form-error {
    display: block;
    margin: 0 15px;
    color: orange;
    font-size: 12px;
}
.error {
    display: none;
    margin: 0 15px;
    color: orange;
    font-size: 12px;
}
.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.form-submit {
    display: block;
    width: 250px;
    height: 42px;
    line-height: 200%;
    font-size: 20px;
    font-family: sans-serif;
    text-decoration: none;
    color: #ebff33;
    border: 2px solid #aaa;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    transition: all .35s;
}

.form-submit span {
    position: relative;
    z-index: 2;
}

.form-submit:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #ff003b;
    transition: all .35s;
}

.form-submit:hover:after {
    height: 100%;
}

.btn-button{
    display: block;
    font-size:1.5rem;
    border:2px solid white;
    border-radius:100px;
    width:50px;
    height:50px;
    padding:5px;
    margin: 5% auto;
    transition: .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

.btn-icon{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align:center;

}

/*//Hover*/
/*/-----------------------*/
.btn-button:hover{
    width:125px;
    background-color: white;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.2);
    color: #01CCC2;
    transition:.3s;
}

.btn-button:active{
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    transition: .05s
}

.spinner-loading {
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #ff003b;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
