/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
}

/* Fullscreen Container */
.container {
    display: flex;
    min-height: 100vh;
    position: relative;
    padding: 40px;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Translucent Background Image */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/assets/bg.webp') no-repeat center center/cover;
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
}

/* Left Section: Workshop Details */
.workshop-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-20px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(-20px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(-20px); }
}

.workshop-details h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.workshop-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* Right Section: Signup Form */
.signup-form {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Form Styling */
.signup-form h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.signup-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-form label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.signup-form input, 
.signup-form textarea {
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #e1e1e1;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.signup-form input:focus,
.signup-form textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.signup-form button {
    padding: 15px 25px;
    font-size: 1.2rem;
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-form button:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(102, 126, 234, 0.3);
}

.signup-form button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }
    
    .workshop-details,
    .signup-form {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Additional Enhancements */
.workshop-details h1,
.signup-form h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.workshop-details p {
    color: #555;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
    color: #999;
}

.signup-form button {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.signup-form button:hover {
    box-shadow: 0 7px 25px rgba(102, 126, 234, 0.3);
}

.signup-form button:active {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}