@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
    font-family: "Lemon Milk";
    src: url("../fonts/lemonmilk/LEMONMILK-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(0deg, #EDF5E8 60%, #C8E1C0 60%);
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
}

form {
    background: white;
    padding: 60px;
    min-width: 480px;
}

.login-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 12px;
}

.login-header__logo {
    display: block;
    max-width: 200px;
    width: auto;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

.login-header__heading {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
}

fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: auto;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-weight: 600;
}

input[type=text], input[type=password], input[type=email] {
    box-sizing: border-box;
    margin-left: auto;
    width: 100%;
    border: 1px solid #E2E2EB;
    padding: 10px;
    min-height: 40px;
}

.checkbox {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 6px
}

input[type=checkbox] {
    margin-top: auto;
    margin-bottom: auto;
}

input[type=submit] {
    background: #E34B94;
    font-family: "Lemon Milk", sans-serif;
    font-size: 0.9375em;
    font-weight: 700;
    color: #FFFFFF;
    height: 35px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    cursor: pointer;
}

.btn-toolbar {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-toolbar a {
    color: #C8E1C0;
}