/* assets/style2.css */

body {
    background: #121212;
    color: #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    background: #1e1e1e;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    width: 320px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #55aaff;
}

input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0 20px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background: #2a2a2a;
    color: #eee;
    height: 42px;
    box-sizing: border-box;
}

input[type="password"]:focus {
    outline: 2px solid #55aaff;
    background: #222;
}

button {
    background: #55aaff;
    border: none;
    padding: 12px 25px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #3388cc;
}

.error-msg {
    color: #ff5555;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-text {
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.5;
}
