*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Sofia Sans', Arial, sans-serif; background: #F3F0EE; color: #141413; }
.login-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-card { background: #fff; border-radius: 20px; padding: 48px 40px; width: 100%; max-width: 400px; box-shadow: rgba(0,0,0,0.08) 0px 24px 48px; }
.login-card h1 { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 32px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #696969; margin-bottom: 6px; }
.field input, input[type="text"], input[type="password"], input[type="email"] { width: 100%; border: 1.5px solid #141413; border-radius: 20px; padding: 10px 18px; font-family: inherit; font-size: 15px; outline: none; }
button[type="submit"] { width: 100%; background: #141413; color: #F3F0EE; border: 1.5px solid #141413; border-radius: 20px; padding: 12px 24px; font-family: inherit; font-size: 15px; font-weight: 500; cursor: pointer; margin-top: 8px; }
button[type="submit"]:hover { background: #333; }
a { color: #141413; font-size: 13px; }
.error { color: #CF4500; font-size: 13px; margin-bottom: 16px; padding: 10px; background: rgba(207,69,0,0.08); border-radius: 8px; }
p { line-height: 1.5; margin-bottom: 16px; }
