:root {
    --primary-color: #fd3db3;
    --secondary-color: #c72cd7;
    --dark-color: #240046;
    --light-color: #ffffff;
}
/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
/* Added styling for event details */
.event-details {
    background: linear-gradient(135deg, rgba(253, 61, 179, 0.1), rgba(199, 44, 215, 0.1));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 2px solid rgba(199, 125, 255, 0.3);
    box-shadow: 0 4px 10px rgba(199, 125, 255, 0.2);
}

.event-details h2 {
    margin-bottom: 10px;
        font-size: 2.5rem;
    color: transparent;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
}

.event-details p {
    font-size: 1.1rem;
    margin: 5px 0;
    color: var(--dark-color);
}
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-container {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(199, 125, 255, 0.2);
    border: 2px solid rgba(199, 125, 255, 0.3);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(199, 125, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199, 125, 255, 0.2);
}

.btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(199, 125, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(199, 125, 255, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #2e7d32;
}

.footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.7;
}
.footer p a {
    text-decoration: none;
    color: #f33ab9;
    font-weight: bold;
}

.footer p {
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 20px;
    }
        .event-details h2 {
        font-size: 1.5rem;
    }
    
    .event-details p {
        font-size: 1rem;
    }
}