html, body{
    height: 100%;
    width: 100%;
    margin: 0;
    overflow-y: hidden;
}

form{
    position: relative;

    height: 100%;
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    background: rgb(50,41,209);
    background: linear-gradient(90deg, rgba(50,41,209,1) 0%, rgba(65,96,196,1) 35%, rgba(69,161,228,1) 79%, rgba(66,201,228,1) 100%);
    background: -moz-linear-gradient(90deg, rgba(50,41,209,1) 0%, rgba(65,96,196,1) 35%, rgba(69,161,228,1) 79%, rgba(66,201,228,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(50,41,209,1) 0%, rgba(65,96,196,1) 35%, rgba(69,161,228,1) 79%, rgba(66,201,228,1) 100%);
}

.div_form{
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;

    padding-bottom: 1em;
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    background: linear-gradient( 50deg, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.1) 77% );
    background: -moz-linear-gradient( 50deg, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.1) 77% );
    background: -webkit-linear-gradient( 50deg, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.1) 77% );
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(5px);

    color: white;

    width: 400px;
}

.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}

.toggle{
    width: 100%;
    display: inline-flex;
}

i{
    color: white;
}