/* Body styling for background */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2e3192, #1bffff);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Login container styling */
.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: #333;
}

/* Icon styling */
.login-container .icon {
    margin-bottom: 20px;
}

.login-container .icon .fas {
    font-size: 60px;
    color: #1bffff;
    transition: transform 0.3s ease;
}

.login-container .icon .fas:hover {
    transform: scale(1.1);
}

.login-container .logo {
    width: 100px;
    height: auto;
    margin-bottom: 40px;
}

/* Heading styling */
.login-container h2 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #2e3192;
}

/* Label and input styling */
.login-container label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-container input:focus {
    border-color: #2e3192;
    box-shadow: 0 0 5px rgba(46, 49, 146, 0.5);
    outline: none;
}

/* Button styling */
.login-container button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2e3192, #1bffff);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-container button:hover {
    background: linear-gradient(135deg, #1bffff, #2e3192);
}

/* Error message styling */
.error-message {
    margin-top: 10px;
    background: #e74c3c;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

/* Footer styling */
.footer {
    margin-top: 15px;
    font-size: 12px;
    color: #aaa;
}

.footer a {
    color: #2e3192;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
