﻿
.title {
    align-self:flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title p,
label,
.input-1,
.label {
        max-width: 100%;
        line-height: normal;
        margin-bottom: 0;
    }

.title-1 {
    font-size: 36px;
    color: #88744A;
}

.title-2{
    font-size:16px;
    color:#262626;
}

p.title-2 span {
    font-weight: 600;
}

.field-1{
    max-width:100%;
}

.number-inputs {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    align-items: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.number-input {
    width: 80px;
    height: 80px;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #88744A;
    font-size: 64px;
    color: #262626;
    background-color: #f8f8f8;
}

.number-input:focus {
    box-shadow: 0 0 0 1px #88744A;
    outline:none;
}

.backCard {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor:pointer;
}

.backLogin {
    color: inherit;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 0;
    color: #262626;
}

.backLogin:hover {
    color: #88744A;
    text-decoration-line: none;
}

.title-receive {
    font-size: 13px;
    margin-bottom: 0;
    color: #262626;
}

.resend{
    font-weight:600;
    color: #7D7D7D;
    text-decoration:underline;
    cursor:pointer;
}

.timer {
    font-size: 13px;
    color: #7D7D7D;
}

#passwordStrength {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#passwordStrength div {
    width: 113.5px;
    height: 6px;
    border-radius: 43px;
    background-color: #DDD;
}

.errorLength,
.errorMatch,
.errorWhitespace {
    display: none;
    font-family: "GothamBook", sans-serif !important;
    font-size: 13px !important;
    color: #DD1F1F !important;
}

#poor.active {
    background-color: #C2D2BE;
}

#weak.active {
    background-color: #8DB783;
}

#good.active {
    background-color: #65925A;
}

#strong.active {
    background-color: #547a4b;
}

@media screen and (max-width: 650px) {
    .number-input {
        width: 60px;
        height: 60px;
        font-size:48px;
    }
}
