body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background: linear-gradient(0deg, #FFFFFF 0%, #EAF8CF  100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 576px;
}

img {
    align-items: center;
    height: 50px;
    width: 210px;
    margin-bottom: 10px;
}

.header {
    font-weight: 700;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #E7EAEA;
    margin-top: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="number"] {
    font-size: 20px;
    text-align: center;
}

input:focus {
    outline: none;
    border: 1px solid #9AD43A;
}

.errorInput {
    border-color: #FF0000 !important;
}

.button {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    border: 1px solid #4C7219;
    background: none;
    color: #000; 
    border-radius: 2rem;
    cursor: pointer;
    justify-content: center;
    background-color: #9AD43A;
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.checkIcon {
    display: none;
    margin-right: 6px;
}

.button.alternate {
    background-color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 10px;
}

.button.disabled {
    background-color: #9AD43A;
    border: 1px solid #4C7219;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

a {
    color: #2400FF;
    font-size: 14px;
}

.errorText {
    display: block;
    color: #FF0000;
    margin-bottom: -10px;
}

/* CSS class to remove default spinners from html-type number*/
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-spinner {
    -moz-appearance: textfield;
}

.resend-timer {
    display: none;
}

.info-icon {
    flex-shrink: 0;
    margin-right: 12px;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

.info-text {
    flex-grow: 1;
    text-align: left;
    font-weight: 300;
}

.help-text {
    display: flex;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #9AD43A;
    font-weight: lighter;
    font-size: 14px;
    background-color: #F5FAEB;
}

@media (max-width: 768px) {
    .container {
        width: 85%;
    }

    .img {
        height: 25px;
        width: 100px;
    }
}