* {
    padding: 0px;
    margin: 0px;

}

@font-face {
    font-family: 'arialroundedmtbold';
    src: url('./fonts/arialroundedmtbold.ttf');
}



main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('./images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-container {
    width: 40rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

button.btn.btn-primary.w-100 {
    background-color: #2b3872 !important;
    height: 3rem;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'arialroundedmtbold';
}

.login-container h3 {
    color: #363636;
    font-family: 'arialroundedmtbold';
}

.form-control {
    background-color: #ffffff !important;
    /* Light blue */
    background-color: #ffffff !important;
    border: navajowhite;
    border-bottom: 3px solid #d0dbef;
    border-radius: inherit !important;
}

.form-control:focus {
    background-color: #ffffff;
    /* Lighter blue */
    border-color: #ffffff;
    /* Optional: Change border color */
}

label.form-label {
    font-size: 1.25rem;
    font-family: 'arialroundedmtbold';
}

.text-end a {
    font-family: 'arialroundedmtbold';
}

@media screen and (max-width: 768px) {
    .login-container {
        margin: 1rem;
        padding: 1.25rem;
    }
}

input#email::placeholder,
input#password::placeholder {
    font-family: 'arialroundedmtbold';
    font-weight: lighter;
}

span.input-group-text {
    background-color: #e8f0fe !important;
}