@keyframes moveGradient {
    100% {
        left: calc(50% + 240px); 
    }
}

@keyframes moveWhite {
    100% {
        left: 50%;
        transform: translateX(-50%);
        width: 960px; 
    }
}

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

.title {
    color: #221E1D;
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120.5%; /* 57.84px */ 
}

.title .logo {
    width: 28px;
    height: 28px;
    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: 48px;
    line-height: 120.5%;
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120.5%; 
}

.sub-title {
    width: 530px;
    height: 56px;
    font-size: 22px;
    margin: 20px auto;
}

.white-box, .gradient-box {
    border-radius: 30px;
}

.white-box {
    width: 960px;
    height: 414px;
    background-color: #fff;
    margin: 30px auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden; 
    animation: moveWhite 1s forwards; 
    width: 480px;
}

.text-blocks {
    width: auto;
    height: 414px;
    float: left;
    padding-left: 60px;
    padding-top: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.info-text-1, .info-text-2 {
    text-align: left;
}

.info-text-1 {
    width: 342px;
    height: 56px;
    font-size: 22px;
    color: black;
    font-family: Manrope;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 27.5px */ 
}

.info-text-2 {
    width: 296px;
    height: 17px;
    color: #6553F5;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%; /* 17.5px */ 
}

input[type="text"] {
    display: inline-flex;
    width: 325px;  
    padding: 16px 20px;  
    justify-content: center;
    align-items: center;
    border: 1px solid #EAEAEA;
    background: #F2F3F6;
    border-radius: 10px;
}

input[type="text"]::placeholder {
    color: #8A8B8D;
    font-family: Manrope, Arial, sans-serif; 
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%; /* 17.5px */
}

button {
    display: flex;
    width: 367px;  
    padding: 17px 0;  
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #6553F5;
    color: #fff;
    border: none;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 22.5px */ 
}

.gradient-box {
    width: 480px;
    height: 414px;
    background: linear-gradient(308deg, #8677FF 9.05%, #90BCFD 94.7%), #FFF;
    float: right;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: moveGradient 1s forwards;
}

.gradient-box img {
    width: 430px;
    height: 336px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    display: block;
}

@keyframes reverseMoveGradient {
    0% {
        left: calc(50% + 240px); 
    }
    100% {
        left: 50%;
        transform: translateX(-50%);
    }
}

@keyframes reverseMoveWhite {
    0% {
        left: 50%;
        transform: translateX(-50%);
        width: 960px; 
    }
    100% {
        left: 50%;
        transform: translateX(-50%);
        width: 480px;
    }
}

.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: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

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

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

.gradient-box2 {
    display: none;
}