*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

html{
    height: 100%;
}

body{
    font-family: 'Segoe UI', sans-serif;;
    font-size: 1rem;
    line-height: 1.6;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
}

p{
    padding-bottom: 5px;
}

.wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form{
    width: 350px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 2rem;
    background: #ffffff;
    border-radius: 25px;
}

.form-input{
    background: #fafafa;
    border: 1px solid #eeeeee;
    padding: 12px;
    width: 100%;
}

.form-group{
    margin-bottom: 1rem;
}

.form-button{
    background: #69d2e7;
    border: 1px solid #ddd;
    color: #ffffff;
    padding: 10px;
    width: 100%;
    text-transform: uppercase;
    border-radius: 20px;
}

.form-button:hover{
    background: #69c8e7;
}

.form-header{
    text-align: center;
    margin-bottom : 2rem;
}

.form-footer{
    text-align: center;
}