*{
    margin: 0;
}

/*Fonts*/
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Semibold.eot');
    src: local('SF Pro Display Semibold'), local('SF Pro Display-Semibold'),
        url('../fonts/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProDisplay-Semibold.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Semibold.woff') format('woff'),
        url('../fonts/SFProDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

body{
    background: #F2F2F2;
}

.form{
    background: #ffffff;
    width: 480px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 20px;
}

.form-header{
    border-bottom: 2px solid #F5F5F5;
    margin-bottom: 30px;
}

.form-header-name{
    font-family: SF Pro Display;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 22px;
    border-bottom: 2px solid #8058E7;
    display: block;
    margin: auto;
    width: fit-content;
    margin-bottom: -2px;
}

.form-body{
    margin-bottom: 30px;
}

.form-body-input{
    padding: 14px 12px;
    background: #F5F5F5;
    border-radius: 5px;
    margin-bottom: 12px;
}

.form-body-input > svg{
    margin-right: 8px;
}

.form-body-input > input{
    border: 0;
    background: none;
    outline: none;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    width: 85%;
}

.form-footer-btn{
    background: #8058E7;
    border-radius: 5px;
    padding: 15px 0;
    margin-bottom: 30px;
}

.form-footer-btn > p{
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    color: #ffffff;
}

.form-footer-links{
    
}

.form-footer-links > div > svg{
    margin-right: 4px;
}

.form-footer-links > div > p{
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
}

#forgot_password{
    color: #808080;
}

#login_btn{
    margin-left: 10px;
}