body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ffe4ec, #ffe6d4, #fef4f9);
}

.container {
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
}

.language-toggle {
    position: absolute;
    top: 10%; 
    left: 85%;
    width: 70px;
    height: 70px;
    background-color: #dc4e80;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #470a71;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 20;
  }
  
  .language-toggle:hover {
    background-color: #dc4e80;
    transform: scale(1.1);
  }  

.info-section {
    width: 50%;
    background: linear-gradient(180deg, #ffc1d9, #ffd6e0);
    padding: 60px;
    color: #6A008A;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.info-section h1 span {
    color: #B20674;
}

.info-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 16px;
    margin: 8px 0;
}

.form-section {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.input-group input {
    width: 50%;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #FFB3C1;
    border-radius: 10px;
    font-size: 16px;
    background-color: #fff4f8;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #B20674;
    background-color: white;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #B20674;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #6A008A;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .info-section, .form-section {
        width: 100%;
        padding: 40px;
        text-align: center;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group input {
        width: 100%;
    }
}
