/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Shared Container Styles */
.contact-container, .about-container, .register-container {
    background: #222;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.7);
    text-align: center;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    color: #FFD700;
    transform: scale(0.9);
    animation: popUp 0.5s ease-in-out forwards;
}

@keyframes popUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.contact-container h2, .about-container h1 {
    color: #FFD700;
    margin-bottom: 20px;
}

/* Input Fields */
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background: #333;
    color: #FFD700;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #FFC107;
    outline: none;
    transform: scale(1.05);
}

/* Social Links */
.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
    color: #111;
    background: #FFD700;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.social-links a:hover {
    background: #FFC107;
    transform: scale(1.05);
}

/* Button */
button {
    background: #FFD700;
    color: #111;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 2px 2px 8px rgba(255, 215, 0, 0.5);
}

button:hover {
    background: #FFC107;
    box-shadow: 3px 3px 12px rgba(255, 215, 0, 0.9);
    transform: scale(1.05);
}

/* About Us List Styling */
.about-container ul {
    list-style: none;
    padding: 0;
}

.about-container ul li {
    background: #333;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.about-container ul li:hover {
    background: #444;
    transform: scale(1.02);
}
