/* messageSent styles */

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10vh;
    
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-symbol {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.message-sent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container {
    text-align: center;
}
/* envelope unicode character */
.message-success::before {
    content: '\2709';
    color: var(--primary-color);
    font-size: 4rem;
}
.message-success {
    color: var(--text-color);
    font-size: 2rem;
}

.message-success > p {
    color: var(--text-color);
    font-size: 1.5rem;
}

.timerCountdown {
    display: none;
    font-size: 20px;
    color: white;
}