@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

header,
h1,
p,
footer,
label,
button,
input::placeholder {
    font-family: 'Nunito Sans', sans-serif;
}

.pg-container {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cp-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 !important;
    line-height: normal;
}

.cp-subtitle {
    font-size: .85rem;
    color: #7e7e7e;
}

.cp-input-otp {
    width: 50px;
    height: 50px;
    border: 1px solid #dddcdc;
    border-radius: 15px;
    text-align: center !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
    color: #4d4c4c;
}

.cp-input-otp:focus {
    outline: none;
    border-color: #4d4c4c;
    box-shadow:
        0 0 0 3px rgba(77, 76, 76, .5)
        0 2px 5px rgba(0, 0, 0, 0.12);
}