* {
    
    font-family: 'poppins';
}
body {
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #f7f8fa;
}

div.main-div {
    width: 400px;
    height: 340px;
    padding: 10px 0px;
    margin-top: 100px;
    background-color: white;
    border: 1px solid #ededef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#main-title {
    width: 90%;
    padding: 5px 0px;
    border-bottom: 1px solid #ededef;
    font-size: 18px;
}

div.form-field {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
}

div.form-field label {
    color: #8c8c8c;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 14px;
}

div.form-field input, #login-btn {
    width: 100%;
    height: 45px;
    border: 1px solid #ededef;
    padding: 0px 8px;
    outline: none;
}

div.snackbar {
    width: 300px;
    height: 48px;
    border-radius: 4px;
    background-color: #271f1b;
    color: white;
    position: fixed;
    right: 30px;
    top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: none;
}

div.snackbar p {
    width: 90%;
    font-size: 14px;
}