* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@media (max-width: 900px) { 
    .container {
        display: flex;
        background-color: #e6f4ff;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 98%;
        padding: 30px;
        flex-direction: column;
    }

    .img__block {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .w20 {
        width: 40%;
        padding: 0 10px 0 10px;
    }
    
    .w4 {
        width: 10%;
        padding: 0 10px 0 10px;
    }

    .submit-btn {
        display: inline-block;
        background-color: #000;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        width: 100%;
    }
    
    .submit-btn:hover {
        background-color: #333;
    }
}

@media (min-width: 900px) { 
    .container {
        display: flex;
        background-color: #e6f4ff;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 50%;
        padding: 30px;
        flex-direction: column;
    }

    .img__block {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .w20 {
        width: 20%;
        padding: 0 10px 0 10px;
    }
    
    .w4 {
        width: 5%;
        padding: 0 10px 0 10px;
    }

    .submit-btn {
        display: inline-block;
        background-color: #000;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
    }
    
    .submit-btn:hover {
        background-color: #333;
    }
}

.left-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.left-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.left-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
}

.left-content .countdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.countdown .countdown-item {
    font-size: 14px;
    text-align: center;
    margin: 0 5px;
}

.countdown .countdown-item .number {
    font-size: 18px;
    font-weight: bold;
}

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
}

.form-container h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    /* width: 100%; */
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.form-group input:focus {
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
}

.privacy-policy {
    font-size: 12px;
    color: #333;
}

.privacy-policy a {
    color: #007bff;
    text-decoration: none;
}

.input__form {
    width: 100%;
}

.p__text {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
    padding-top: 30px;
    padding-bottom: 50px;
    text-align: center;
}