/* General Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #004aad, #ff8c00); /* Gradient inspired by logo */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styles */
.signin-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 350px;
    text-align: center;
    animation: fadeIn 1s;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo Section */
/* Logo Container Styles */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 100%; /* Ensure it scales with its container */
    height: auto; /* Maintain aspect ratio */
    max-height: 100px; /* Limit the height for consistency */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect for the Logo */
.logo-container img:hover {
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add shadow for pop effect */
}


/* Form Styles */
.signin-form h2 {
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

input:focus {
    border-color: #004aad;
}

/* Button Styling */
.btn-submit {
    background: linear-gradient(to right, #004aad, #ff8c00);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(to right, #003c8c, #e57700);
}

/* Responsive */
@media (max-width: 400px) {
    .signin-container {
        width: 90%;
    }
}
