/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4e9dc;
}

/* Sign Up Section Styles */
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin: 0;
    margin-top: 30px;
    padding-bottom: 30px;
    background: linear-gradient(135deg, #dcc0a9, #f4e9dc);
    animation: backgroundAnimation 10s infinite alternate;
}

@keyframes backgroundAnimation {
    from {
        background: linear-gradient(135deg, #dcc0a9, #f4e9dc);
    }
    to {
        background: linear-gradient(135deg, #f4e9dc, #dcc0a9);
    }
}

.signup-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: boxAnimation 1s ease-out;
}

@keyframes boxAnimation {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.signup-box h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    animation: textAnimation 1.5s ease-out;
}

@keyframes textAnimation {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 1em;
    margin-bottom: 5px;
    color: #666;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #a00090;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.signup-button {
    background: #270023;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signup-button:hover {
    background: #a00090;
}

/* Animation Classes from Animate.css */
.animate__animated.animate__fadeIn {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .signup-box {
        padding: 30px;
    }

    .signup-box h2 {
        font-size: 1.8em;
    }

    .input-group label,
    .input-group input,
    .input-group select,
    .signup-button {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .signup-box {
        padding: 20px;
    }

    .signup-box h2 {
        font-size: 1.5em;
    }

    .input-group label,
    .input-group input,
    .input-group select,
    .signup-button {
        font-size: 0.9em;
    }

    .checkbox-group label {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .signup-box {
        padding: 15px;
    }

    .signup-box h2 {
        font-size: 1.2em;
    }

    .input-group label,
    .input-group input,
    .input-group select,
    .signup-button {
        font-size: 0.85em;
    }

    .checkbox-group label {
        font-size: 0.85em;
    }
}
