body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0a4870, #6f8db0);
    color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    font-size: 24px;
    margin: 20px 0;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    max-width: 150px;
    width: 100%;
}

.form-container input[type="text"],
.form-container input[type="checkbox"] {
    width: 85%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container label {
    margin-left: 5px;
    font-size: 14px;
}

.form-container input[type="submit"] {
    background-color: #6ba645;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.form-container input[type="submit"]:hover {
    background-color: #558a3a;
}

.header {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
}

.header img {
    vertical-align: middle;
    margin-right: 10px;
}

.free-tag {
    background-color: #f9a826;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
}

.captcha {
    margin: 10px 0;
}

.footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
}

.footer img {
    width: 150px;
}

.phone-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    color: white;
}

a {
    color: #0044cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
