.connect-section {
    text-align: center;
    padding: 10px 20px;
}

.connect-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #F9ECB4;
    font-weight: 400;
    margin-bottom: 20px;
}

.connect-description {
    font-family: 'Garamond', serif;
    font-size: 25px;
    color: #F9ECB4;
    width: 36%;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.connect-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.connect-input {
    width: 100%;
    max-width: 450px;
    padding: 15px;
    border-radius: 30px;
    color: #F9ECB4;
    border: 1px solid #F9ECB4;
    margin-bottom: 20px;
    font-family: 'Garamond', serif;
    font-size: 18px;
    background-color: #273D55;
   
}

.connect-button {
    margin: 0 auto;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    padding: 10px 30px;
    color: #F9ECB4;
    border: 1px solid #F9ECB4;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    width: 40%;
    background-color: #273D55;
}

.connect-button:hover {
    background-color: #F9ECB4;
    color: #1A3C59;
}
.connect-divider svg{
    width: 90%; 
    display: block;
    margin: 0px auto; 
    margin-top: 5%;
}

@media (max-width: 768px) {
    .connect-title {
        font-size: 36px;
    }

    .connect-description {
        font-size: 18px;
    }

    .connect-input {
        width: 80%;
        font-size: 16px;
    }

    .connect-button {
        font-size: 16px;
    }
    .connect-divider svg {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .connect-title {
        font-size: 28px;
    }

    .connect-description {
        width: 100%;
        font-size: 16px;
    }

    .connect-input {
        font-size: 14px;
    }

    .connect-button {
        width: 57%;
        font-size: 14px;
    }
    .connect-decor img {
        width: 80%;
    }
    .connect-divider svg {
        width: 90%;
    }
}


