/* login/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f8f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: #fff;
    padding: 40px 30px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
    min-width: 320px;
}

h2 {
    margin: 0 0 24px 0;
    color: #111;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.6px;
    text-align: center;
}

input[type=text],
input[type=password] {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0 18px 0;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

input:focus {
    outline: 2px solid #007aff;
    outline-offset: 1px;
    border-color: #007aff;
}

button {
    width: 100%;
    background: #007aff;
    color: white;
    padding: 12px 0;
    margin-top: 8px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.08);
    transition: background 0.18s;
}

button:hover {
    background: #005bbb;
}

button:active {
    transform: scale(0.98);
}

.error {
    color: #e44e2d;
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #ffdddd;
}

