/* assets/css/auth.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #121214;
    color: #e1e1e6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    background-color: #1d1d22;
    padding: 40px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid #29292e;
}

h2 {
    text-align: center;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 24px;
}

.subtitle {
    text-align: center;
    color: #7c7c8a;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #c4c4cc;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 14px;
    background-color: #121214;
    border: 1px solid #29292e;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
}

input:focus {
    border-color: #04d361;
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #04d361;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #00b34d;
}