/* Copyright (c) 2024 by Patricia Ciurescu (https://codepen.io/patriciaa11/pen/RwOzeWb) */
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
*,
:before,
:after {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: inherit;
}

body {
    font-family: 'Quicksand', sans-serif;
    /* background-image: url(https://raw.githubusercontent.com/CiurescuP/LogIn-Form/main/bg.jpg); */
    background-image: url(../front/images/login_bg.jpg);
    background-repeat: no-repeat;
}

form {
    max-width:450px;
    background-color: rgba(255, 255, 255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 17px;
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(129, 236, 174, 0.6);
    padding: 20px;
}

form *{
    font-family: 'Quicksand', sans-serif;
    color:#ffffff;
    letter-spacing: 1px;
    outline: none;
    border: none;
}
form h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
    font-size: 25px;
    font-weight: 800;
}

input {
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 11px 15px;
    font-size: 14px;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.22);
    border: 2px solid #38363654;
    border-radius: 5px;
    width: 100%;
}

.social-text {
    font-size: 18px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: white;
}

input:hover {
    background: #434343;
    transition: all 0.50s ease;
}

input:focus {
    box-shadow: 0px 2px 2px #0000002b, 0px 5px 10px #00000036;
    background: #434343;        
}

::placeholder {     
    color: #e5e5e5;
}

button {
    margin-top: 0px;
    margin-bottom: 15px;
    width: 100%;    
    background: rgba(0, 0, 0, 0.22);
    border: 2px solid #38363654;
    border-radius: 5px;
    color: #e1e1e1;
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
} 
 
button:hover {
    background: #629677;
    transition: all 0.50s ease;
}

button:focus {
    box-shadow: 0px 0px 0px 2px rgba(103, 110, 103, 0.71);
    background: #629677;
}           

.social-icons {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon {
    min-height: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 40px;
    box-shadow: 0px 4px 8px #0c0b0b00;
    transition: all 0.50s ease;
    font-size: 20px;
}

.social-icon:hover{
    box-shadow: 0px 4px 14px #0000007a;
}

.social-icon:focus {
    box-shadow: 0px 0px 0px 2px currentColor;
    transform: scale(0.9);
}

.field-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) translateY(5px);
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.remember-password-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.remember-password-container label {
    font-size: 20px;
    margin-left: 10px;
    margin-top: 0px;
}

input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    transform: scale(1.2);
    width: auto;
    cursor: pointer;
}
.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-row {
    flex-direction: row;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.invalid-feedback {
    min-height: 20px;
}