@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.eot');
    src: url('../../css/fonts/Poppins/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../../css/fonts/Poppins/Poppins-Regular.woff2') format('woff2'), url('../../css/fonts/Poppins/Poppins-Regular.woff') format('woff'), url('../../css/fonts/Poppins/Poppins-Regular.ttf') format('truetype'), url('../../css/fonts/Poppins/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    font-family: Poppins;
    font-weight: 500;
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.bg-application {
    background-position: 50%;
    position: fixed;
    background-repeat: repeat;
    background-size: 720px 720px;
    height: 200vh;
    left: -50%;
    top: -50vh;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 200%;
    z-index: -5;
}

.form-box {
    position: relative;
    width: 400px;
    height: 450px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
}

.form-box input,
input:-webkit-autofill {
    width: 100%;
    height: 50px;
    font-size: 1em;
    padding: 0 35px 0 5px;
}

button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #696cff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    color: white;
}

    button:hover {
        width: 100%;
        height: 40px;
        border-radius: 40px;
        background: #8A8CFF;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 1em;
        font-weight: 400;
        color: white;
    }

.logo {
    max-height: 120px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 6px 5px #ccc;
    -webkit-border-radius: 50%;
}