/* Twilight Harbor CRM Style */

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background: linear-gradient(to right, #1b1f27, #2c2f38);
    color: #eaeaea;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(34, 36, 44, 0.95);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(117, 84, 255, 0.3);
    width: 320px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #b4aaff;
    font-weight: 600;
    font-size: 24px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background-color: #282c37;
    color: #fff;
    font-size: 14px;
}

input:focus {
    outline: 2px solid #6d5cff;
}

button {
    width: 100%;
    padding: 12px;
    background: #6d5cff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #7e6eff;
}

.error {
    margin-top: 10px;
    color: #ff8080;
    font-size: 13px;
}
