/* auth.css - DropInvest Auth Pages */
body {
    background: #0e0e0e;
    color: #eee;
    font-family: 'Arial', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.auth-container {
    background: #181818;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    max-width: 350px;
    width: 100%;
    margin: 40px auto;
}
.auth-container h1 {
    color: #00ffd0;
    margin-bottom: 18px;
    font-size: 2rem;
}
.auth-container input[type="text"],
.auth-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: none;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font-size: 1em;
}
.auth-container button {
    width: 100%;
    padding: 12px;
    background: #00ffd0;
    color: #111;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.auth-container button:hover {
    background: #ffd54f;
    color: #111;
}
.auth-container .error {
    color: #ff5555;
    margin-bottom: 12px;
    text-align: center;
}
.auth-container .success {
    color: #00ffd0;
    margin-bottom: 12px;
    text-align: center;
}
.auth-container a {
    color: #00ffd0;
    text-decoration: underline;
    font-size: 0.95em;
}
.auth-container a:hover {
    color: #ffd54f;
}
