body {
    font-family: 'Manrope', Arial, sans-serif;
    text-align: center;
    padding-top: 20px;
    background-color: #F2F3F6;
}

.title {
    color: #221E1D;
    font-size: 36px;
    font-weight: 1000;
    line-height: 120.5%;
}

.title .logo {
    width: 20px;
    height: 20px;
    background: url('Vector.svg') center/contain no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.gradient-text {
    background: linear-gradient(#6553F5, #6799E3);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 36px;
    line-height: 120.5%;
    font-weight: 700;
}

.sub-title {
    width: 80%;
    height: auto;
    font-size: 18px;
    margin: 20px auto;
}

.white-box {
    width: 90%;
    background-color: #fff;
    margin: 200px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gradient-box2 {
    width: 86%;
    height: 30%; 
    background: linear-gradient(308deg, #8677FF 9.05%, #90BCFD 94.7%), #FFF;
    position: absolute;
    top: 200px; /* Измените это значение по вашему усмотрению */
    left: 7%;
    border-radius: 15px;
    z-index: -1;
    margin-top: 30px;
}

.gradient-box {
    display: none;
}

.text-blocks {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-text-1 {
    width: auto;
    font-size: 18px;
    color: black;
    font-weight: 500;
    line-height: 125%;
    text-align: center;
}

.info-text-2 {
    width: auto;
    color: #6553F5;
    font-size: 14px;
    font-weight: 300;
    line-height: 125%;
    text-align: center;
}

input[type="text"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #EAEAEA;
    background: #F2F3F6;
    border-radius: 5px;
}

input[type="text"]::placeholder {
    color: #8A8B8D;
    font-size: 14px;
    font-weight: 300;
    line-height: 125%;
}

button {
    width: 87%;
    padding: 10px;
    border-radius: 4px;
    background: #6553F5;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 80%;
    max-width: 300px;
    border-radius: 5px;
}

.close-button {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
}

.close-button:hover {
    color: black;
}

.gradient-box2 img {
    width: 80%; 
    max-width: 100%; 
    height: auto; 
    position: relative;
    top: 50%;
    left: 40%; 
    transform: translate(-50%, -50%);
    margin: 0 auto;
    display: block;
}