body {
    margin: 0;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 375px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 15px;
}

.logo {
    height: 30px;
}

.support {
    font-size: 10px;
    color: #0055cc;
    margin: 0 5px;
}

.flag {
    height: 25px;
}

.video-block {
    padding: 10px;
    text-align: center;
    padding-bottom: 0;
}

.video-block video {
    width: 100%;
    border-radius: 25px;
    background: #dcdcdc;
}

.form-block {
    background: white;
    padding: 20px 15px;
    margin-left: 10px;
    margin-right: 15px;
    background: rgba(255,255,255,0.85);
    border-radius: 25px;
}

.form-block h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.highlight {
    color: #0055cc;
}

.subtext {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.form input[type="text"],
.form input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: none;
    margin-bottom: 10px;
    border-radius: 15px;
    background: #3275d0;
    color: white;
    font-size: 17px;
}

.phone-field {
    display: flex;
    align-items: center;
    background: #3275d0;
    border-radius: 10px;
    overflow: hidden;
    padding-left: 10px;
    margin-bottom: 10px;
}

.phone-field .flag-icon img {
    width: 18px;
    margin-right: 5px;
}

.phone-field span {
    color: white;
    font-size: 14px;
    margin-right: 5px;
}

.phone-field input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    color: white;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    line-height: 1.2;
    width: 72%;
    margin: auto;
    margin-bottom: 12px;
    margin-top: 10px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #3275d0;
    border-color: #3275d0;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

button[type="submit"] {
    width: 100%;
    background-color: #3275d0;
    color: white;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

::placeholder {
    color: white;
}
