/* tutorial.dreamradios.com/auth/login.css */
body { font-family: "Segoe UI", Arial, sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; background: #eef3fb; }
form { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 2px 10px rgba(31, 42, 61, .12); width: 300px; }
h1 { font-size: 1.3rem; margin: 0 0 1rem; color: #1a73e8; }
input { width: 100%; padding: .6rem; margin-bottom: .8rem; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; }
button { width: 100%; padding: .6rem; border: 0; border-radius: 6px; background: #1a73e8; color: #fff; font-size: 1rem; cursor: pointer; }
button:hover { background: #1765cc; }
.error { color: #c0392b; font-size: .9rem; margin-bottom: .8rem; }
