@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.countdown-h2 {
    color: #303030;
    font-size: 18px;
    font-weight: 600;
}

.info-card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-height: 70px !important;
    color: #303030;
    background: #cde4ff;
    border-left: 4px solid #2185ff;
    border-radius: 8px;
    padding: 20px 10px;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.info-card .info-card-title {
    color: #2185ff;
    font-size: 14px;
    font-weight: 600;
}

.info-card .info-card-description {
    color: #303030;
    font-size: 14px;
    font-weight: 400;
}


#code {
    font-size: 24px;
    margin-bottom: 20px;
}

.base-timer {
    position: relative;
    width: 100px;
    height: 100px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: rgb(211, 211, 211);
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: red;
}

.base-timer__label {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

#codeForm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0px 30px;
}

.codeInput {
    width: 45px;
    height: 45px;
    font-size: 18px;
    text-align: center;
    padding: 4px 10px !important;
    background-color: #f5f8fa;
    border: 1px solid#d6d6d6;
    border-radius: 4px;
    color: #5e6278;
    transition: color .2s ease, background-color .2s ease;
    cursor: pointer;
    transition: all 350ms ease;
}

.codeInput:hover {
    transition: all 350ms ease;
    border: 1px solid #79b4fd;
}

.codeInput:focus-within {
    transition: all 350ms ease;
    outline-color: #79b4fd;
}

/* 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;
}

.btn-verify {
    color: #fff;
    background: crimson;
    font-size: 14px;
    border: none;
    padding: 4.875px 9.75px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: all 400ms ease;
}

.btn-verify:hover {
    transition: all 400ms ease;
    background: #3cb7ff;
}

.btn-verify:focus-within {
    transition: all 400ms ease;
    outline: 2px solid #3cb7ff;
}

.text-token {
    color: crimson;
    font-size: 15px;
    font-weight: 500;
}