/* Global Styles */
body {
    background: linear-gradient(135deg, #00b09b, #96c93d); /* Gradient background */
    font-family: Arial, sans-serif;
    color: #333;
}

/* Centering the container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    animation: fadeIn 1s ease-in;
}

/* Styling the logo */
.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.logo {
    max-width: 150px; /* Adjust size as needed */
    border-radius: 50%;
    animation: bounceIn 1s ease-in;
}

/* Styling the form container */
.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px; /* Adjust width as needed */
    animation: slideIn 0.5s ease-out;
}

h2 {
    margin-bottom: 1rem;
    text-align: center;
    color: #007bff;
}

/* Styling the form elements */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
