@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala:wght@400;700&display=swap');
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    scrollbar-width: none;
}
body::-webkit-scrollbar {
    display: none;
}
body {
    font-family: "Segoe UI", Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #0072ff, #00c6ff);
    color: #fff;
    min-height: 100vh;
}
.container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    overflow: visible;
    animation: fadeIn 1s ease-in-out;
    backdrop-filter: blur(10px);
}
.left {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background: rgba(0, 0, 0, 0.2);
    display: grid;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
}
.left h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.left p {
    font-size: 1.5em;
    line-height: 1.7;
    text-align: justify;
}
.right {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.2);
    animation: slideUp 1.2s ease-in-out;
    display: grid;
    border-radius: 20px;  
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.field {
    display: flex;
    align-items: center;
    gap: 10px;
}
label {
    width: 130px;
    font-weight: bold;
    font-size: 0.95em;
    flex-shrink: 0;
}
.input-icon {
    position: relative;
    flex: 1;
}
.input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #0072ff;
    font-size: 1em;
    transition: transform 0.3s ease, color 0.3s ease;
}
.input-icon select {
    width: 112%;
}
input, select, textarea {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
    font-family: "Segoe UI", Arial, sans-serif;
}
input:focus, select:focus, textarea:focus {
    background-color: rgba(255,255,255,0.85);
    transform: scale(1.02);
}
input:focus + i,
textarea:focus + i,
select:focus + i {
    color: #00c6ff;
    transform: translateY(-50%) scale(1.2);
}
textarea {
    resize: none;
    height: 100px;
}
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
button {
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    color: white;
}
.clear-btn {
    background-color: #ff4b2b;
}
.send-btn {
    background-color: #4CAF50;
}
button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 478px) {
    .container {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
        text-align: center;
    }
    .field {
        flex-direction: column;
        align-items: stretch;
    }
    label {
        width: 100%;
        text-align: left;
    }
    .input-icon i {
        left: 10px;
    }
}