@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #121212;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.wrapper {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.title {
    font-size: 56px;
    font-weight: 700;
    color: #ff4b5c;
    margin-bottom: 30px;
    margin-top: 50px;
}

.title span {
    color: #f0f0f0;
}

form {
    margin: 50px 0;
}

.email-field {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.email-field input {
    width: 70%;
    padding: 15px;
    font-size: 18px;
    border: none;
    outline: none;
    background: #333;
    color: #f0f0f0;
}

.email-field button {
    width: 30%;
    padding: 15px;
    font-size: 18px;
    border: none;
    background-color: #ff4b5c;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.email-field button:hover {
    background-color: #f03542;
}

.count-down {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    gap: 10px;
}

.timer {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.timer:hover {
    transform: scale(1.05);
}

.numb {
    font-size: 36px;
    font-weight: 700;
    color: #ff4b5c;
}

.text {
    font-size: 18px;
    font-weight: 500;
    color: #f0f0f0;
}

/* Media Queries */
@media (max-width: 768px) {
    .count-down {
        flex-direction: column;
    }

    .timer {
        margin-bottom: 20px;
    }
}