/* Kode Super Ringan & Responsif */
.vam-contact-container {
font-family: 'Quicksand', sans-serif;
max-width: 500px; /* Mengunci lebar agar konsisten di PC & HP */
margin: 20px auto;
padding: 30px 20px;
background: #fff5f7;
border: 2px solid #ffb6c1;
border-radius: 30px;
box-shadow: 0 10px 25px rgba(255, 182, 193, 0.3);
box-sizing: border-box;
}
.vam-title {
color: #ff69b4;
text-align: center;
font-family: 'Playfair Display', serif;
font-size: 28px;
margin-bottom: 5px;
}
.vam-subtitle {
text-align: justify;
font-size: 13px;
color: #000000;
margin-bottom: 25px;
line-height: 1.5;
}
.vam-input-group {
margin-bottom: 15px;
}
.vam-input {
width: 100%;
padding: 12px 15px;
border: 1px solid #ffc0cb;
border-radius: 15px;
background: white;
font-family: inherit;
color: #555;
box-sizing: border-box;
transition: all 0.3s ease;
outline: none;
}
/* Efek Hover & Fokus pada Input */
.vam-input:hover {
border-color: #ff69b4;
box-shadow: 0 0 8px rgba(255, 105, 180, 0.2);
}
.vam-input:focus {
border-color: #ff69b4;
background: #fff9fa;
}
.vam-textarea {
height: 120px;
resize: none;
}
/* Tombol Cantik dengan Efek Hover */
.vam-button {
width: 100%;
background: #ff69b4;
color: white;
padding: 15px;
border: none;
border-radius: 15px;
font-weight: bold;
cursor: pointer;
transition: all 0.4s ease;
font-family: inherit;
font-size: 16px;
}
.vam-button:hover {
background: #d02a77;
transform: translateY(-3px); /* Efek melayang */
box-shadow: 0 5px 15px rgba(208, 42, 119, 0.4);
}
.vam-button:active {
transform: translateY(0);
}
/* Pesan Sukses & Error */
#ContactForm1_contact-form-error-message, #ContactForm1_contact-form-success-message {
font-size: 12px;
margin-top: 15px;
color: #d02a77;
font-weight: bold;
}