/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #84fab0, #8fd3f4);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Form container */
.form-container {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    animation: slideIn 0.6s ease-in-out;
}

h2 {
    color: #333333;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    color: #555;
    font-weight: 500;
}

input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #84fab0;
    box-shadow: 0 0 5px rgba(132, 250, 176, 0.5);
}

button {
    background: #84fab0;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #68d39b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Add animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
