@font-face {
    font-family: 'InterRegular';
    src: url('../fonts/Inter/Inter_18pt-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'InterMedium';
    src: url('../fonts/Inter/Inter_18pt-Medium.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
}
html, body {
    min-height: 100%;
    height: 100%;
}
body {
    font-family: 'InterRegular';
    font-size: 13px;
    line-height: 21px;
    color: #000000;
    background-color: #f6f8fa;
}
a {
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid #000000;
    padding-bottom: 1px;
}
ul {
    list-style: none;
}

main {
    max-width: 430px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 1px 0 8px 2px #00000012;
}
.logo {
    font-family: 'InterMedium';
    font-size: 18px;
    padding: 20px;
}
.logo a {
    border: 0;
}
.logo span {
    color: #336CEC;
}
.heading {
    font-family: 'InterMedium';
    font-size: 17px;
    padding: 0 20px 0 20px;
}

.content {
    padding: 15px 20px;
}
.form {
    padding-bottom: 10px;
}
.form label {
    display: block;
    margin-bottom: 1px;
}
.forget-password {
    font-size: 12px;
    display: inline-block;
    margin-top: 2px;
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.field input {
    position: relative;
    line-height: 20px;
    height: 25px;
    border-radius: 6px;
    background-color: #f6f8fa;
    border: 1px solid #d0d7de;
    color: #37352f;
    padding: 5px 12px;
    outline: 0;
    display: block;
}
.form button {
    font-weight: 500;
    height: 35px;
    border-radius: 6px;
    border: 1px solid transparent;
    color: #fff;
    padding: 0 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #000000;
    width: 100%;
    margin-top: 10px;
}

.text {
    text-align: center;
}

.errors {
    background: #000;
    color: #fff;
    padding: 10px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}