@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body{
    background-color: #fefefe;
    font-family: 'Poppins', sans-serif;
}

#preloader {
    background: #0000004d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0f0e2f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.label-input{
    font-size: 11pt;
    margin-bottom: 5px;
}

.form-input{
    padding-left: 15px;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 6px;
    border: 1px solid #4f4d4d;
    font-size: 10pt;
}

.form-input::placeholder{
    padding-left: 15px;
    color: #666262;
    font-size: 10pt;
}

.form-input:focus{
    padding-left: 20px;
    outline-color: #0f0e2f;
}

.btn-login{
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1.25px;
    border: none;
    background-color: #211f67;
    color: white;
    font-weight: bold;
}

.btn-login:hover{
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1.25px;
    border: none;
    background-color: #1b1951;
    color: white;
    font-weight: bold;
}

.btn-login:active{
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1.25px;
    border: none;
    background-color: #0f0e2f;
    color: white;
    font-weight: bold;
}

