* {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 20px;
}

.auth_container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #F5F5F5;
    display: flex;
    align-items: center;
}

.form_container {
    margin: 0 auto;
    width: 444px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.header {
    margin-bottom: 20px;
    align-self: flex-start;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
}

.auth__fieldset {
    position: relative;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
    border: none;
}

.auth__error {
    position: absolute;
    bottom: -25px;
    left: 0;
    color: red;
    font-size: 14px;
    font-weight: 300;
}

.auth_label {
    position: absolute;
    border-radius: 3px;
    left: 0.65em;
    top: -0.85em;
    font-weight: 300;
    font-size: 12px;
    color: #6f8196;
    background: #fff;
    padding: 0px 4px;
    z-index: 100;
}

.submit {
    margin-top: 10px;
    background: #00ADEA;
    color: #FFFFFF;
    width: 143px;
    border: 0;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}
  