* {
    font-family: Roboto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.redirect-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 12px;
}
.redirect-page .loader {
    height: 76px;
    width: 76px;
    border-radius: 50%;
    border: 4px solid #e3e3e3;
    border-right-color: #73B948;
    animation: spin 1s ease infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.redirect-page .title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
}
.redirect-page .description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
}
