@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Nunito+Sans:opsz,wght@6..12,300&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

.background {
    position: relative;
    height: 100vh;
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background-login-2.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.btn-green {
    background-color: #8dc637;
    color: #fff;
}

.btn-green:hover,
.btn-green:active,
.btn-green:focus-visible {
    background-color: #84b638 !important;
    color: #fff !important;
}

.btn-rounded {
    border-radius: 1.5em;
}

.card {
    border: none;
    padding: 1.5em;
    padding-top: 5em;
    padding-bottom: 5em;
    /* background: url('../images/background-login.webp'); */
    background-color: rgba(255, 255, 255, .3) !important;
    background-size: cover;
    background-position: center;
    border-radius: 1em;
    box-shadow: 0 0 1em rgba(0, 0, 0, 1);
}

.input-rounded-end {
    border-radius: 0 1.5em 1.5em 0;
    background-color: #fff;
}

.span-rounded-start {
    border-radius: 1.5em 0 0 1.5em;
    background-color: #fff;
}