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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #282E33;
    color: #48D6BA;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(40, 46, 51, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(72, 214, 186, 0.18);
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #3a444b;
    border-radius: 8px;
    background: #1f2529;
    color: #e0f0ee;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #48D6BA;
    box-shadow: 0 0 0 3px rgba(72, 214, 186, 0.25);
}

.btn-pill {
    width: 100%;
    padding: 1rem;
    background: #48D6BA;
    color: #1a2226;
    border: none;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.btn-pill:hover {
    background: #3abfa4;
    transform: translateY(-1px);
}

.error {
    color: #ff4d4d;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.success {
    color: #48D6BA;
    text-align: center;
    margin-bottom: 1.5rem;
}
