﻿/* Login Page Styling */
body {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

    .login-container h2 {
        margin-bottom: 20px;
        color: #333;
    }

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

    .form-group label {
        font-weight: bold;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s ease-in-out;
    }

        .form-group input:focus {
            border-color: #2575fc;
            outline: none;
        }

button#loginBtn {
    width: 100%;
    background: #2575fc;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

    button#loginBtn:hover {
        background: #6a11cb;
    }

.alert-danger {
    background: #ff4d4d;
    color: white;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    display: none;
}
