/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

/* Container Box */
.container {
    background: white;
    padding: 25px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

/* Form Headings */
h2 {
    color: #333;
    margin-bottom: 15px;
}

/* Input Fields */
input, select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

/* Input Focus */
input:focus, select:focus {
    border-color: #2575fc;
    outline: none;
    box-shadow: 0px 0px 6px rgba(37, 117, 252, 0.3);
}

/* Button Styling */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #2575fc;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: #1a5fd8;
    transform: scale(1.05);
}

/* Links */
p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

a {
    color: #2575fc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #1a5fd8;
}

/* Form Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide Signup Initially */
.hidden {
    display: none;
}
