/* Google Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@font-face {
    font-family: 'Nunito';
    src: url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
    font-display: swap;
}
body {
    font-family: 'Nunito', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
.main,
.main > .container,
.main > .container > .row {
    min-height: 100vh;
}
.auth-info {
    align-items: center;
    background-image: var(--auth-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: #684416;
}
.card {
    border-radius: 25px;
}
.auth-notice {
    padding: 0px 15%;
    color: #afa580;
    margin-top: 20px;
}

.auth-notice i {
    color: #6d5d24;
}

.form-label {
    color: #93601c;
    font-weight: 500;
    font-size: 18px;
}

.btn-primary {
    background-color: #97671c;
    border-color: #a3782d;    
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.5s ease;
}

.btn-primary:hover {
    background-color: #dab141;
    border-color: #b6912b;
}

.activation-code-inputs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6, minmax(0, 48px));
    justify-content: center;
}

.activation-code-input {
    aspect-ratio: 1;
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

small {
    font-size: 12px;
    color: #93601c;
}

@media (max-width: 767.98px) {
    .auth-info {
        min-height: 260px;
    }
    .activation-code-inputs {
        gap: 8px;
        grid-template-columns: repeat(6, minmax(0, 42px));
    }
}
