/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f8f9fa, #e0e0e0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Main Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

/* Login Form */
.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 400px;
    transition: transform 0.3s ease-in-out;
}

/* Centering Form Elements */
.login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    width: 180px;
    margin-bottom: 20px;
}

/* Labels */
label {
    display: block;
    text-align: left;
    font-weight: 600;
    width: 100%;
    margin: 10px 0 5px;
}

/* Input Fields */
input {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    display: block;
}

/* Focus Effect */
input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
    outline: none;
}

/* Login Button */
button {
    width: 92%;
    padding: 12px;
    background: linear-gradient(to right, #ff6600, #ff3300);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}

/* Hover and Click Effects */
button:hover {
    background: linear-gradient(to right, #ff3300, #cc2900);
    box-shadow: 0 4px 10px rgba(255, 51, 0, 0.3);
}

button:active {
    transform: scale(0.98);
}

/* Error Message */
.error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    background: rgba(255, 0, 0, 0.1);
    padding: 8px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 400px) {
    .login-container {
        width: 90%;
    }
}
.login-form input {
    font-size: 1.5rem; /* Bigger text */
    padding: 15px; /* More padding */
    height: auto; /* Adjust height */
}

.btn-lg {
    font-size: 1.25rem; /* Bigger button */
    padding: 15px;
}


