*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    border:0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.login{
    height: 100vh;
    /* background: linear-gradient(135deg, #2E3532, #D3EFBD); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 32px;
    border-radius:16px;
    box-shadow: 0 4px 10px 0 #00000020;
}

.headline{
    font-size:30px;
    font-weight: 400;
    color: #666;
}

.subheadline{
    font-size: 14px;
    font-weight: 400px;
    color: #666;
}

.form{
    width: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 16px;
}

.input-email{
    margin-bottom: 8px;
    width: 100%;
    padding: 8px 0 8px 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.input-password{
    width: 100%;
    padding: 8px 0 8px 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.label-email{
    margin: 0 0 -12px 0;
    color: #333;
    font-weight: 600;
}

.label-password{
    margin: 0 0 -12px 0;
    color: #333;
    font-weight: 600;
}

.form i{
    color: #999;
    font-size: 16px;
    transform: translateX(10px) translateY(28px);
}

.input-email::placeholder{
    font-size: 12px;
    color: #999;
}

.input-password::placeholder{
    font-size: 12px;
    color: #999;
}

.input-email:focus{
    border: 1px solid #2E3532;
}

.input-password:focus{
    border: 1px solid #2E3532;
}

.forgot{
    color: #2E3532;
    margin: 16px 0;
    cursor: pointer;
}

.forgot:hover{
    color: #D3EFBD;
}

.button{
    width: 100%;
    border-radius: 4px;
    font-weight: 600;
    background: linear-gradient(135deg, #2E3532, #D3EFBD);
    color: #fff;
    padding: 8px;
    cursor: pointer;
}

body{
    background: url('https://picsum.photos/1920/1080');
}