@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: inter, lato, arial, sans-serif, system-ui;
    align-items: center;
    justify-content: center;
}

body form {
    border-radius: 20px;
    padding: 0 30px 30px;
}

.form-element {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    line-height: 2px;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}

@media (min-width:768px) {
  .form-element1 {
    width: 400px;
  }
}
@media (max-width:767px) {
	.form-element1 {
	    max-width: 90%;
	}
}

button.submit {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin: auto;
    background-color: #4f46ef;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

button.submit {
    background: linear-gradient(45deg, #4f46ef, #3730a3);
    color: white;
    border: none;
}

button.submit:hover {
    background: linear-gradient(45deg, #3730a3, #4f46ef);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    min-height: 600px;
}

.contact-form-container iframe {
    border-radius: 8px;
}

/* Contact Info Styles */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info i {
    font-size: 1.25rem;
    width: 24px;
}

.contact-info span {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .hero-section .row {
        text-align: center;
    }
}