/* login_css/login.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #e9f1f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 25px;
}

form {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 320px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 11px 12px;
    margin-bottom: 20px;
    border: 1.8px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.25s ease-in-out;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #0077b6;
    outline: none;
    box-shadow: 0 0 5px #90cdf4;
}

button {
    width: 100%;
    padding: 13px;
    background-color: #0077b6;
    color: white;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005f86;
}

p {
    text-align: center;
    margin-top: 18px;
    font-weight: 600;
    color: #e63946;
    font-size: 15px;
}
