/* Authentication Pages - Shared Styles */
body.auth-page { min-height: 100vh; display: flex; align-items: center; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body.auth-login { background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%); }
body.auth-register { background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%); padding: 30px 0; }
body.auth-forgot { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.auth-container { max-width: 420px; width: 100%; }
.auth-container.wide { max-width: 550px; }
.auth-card { background: white; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); border: none; overflow: hidden; margin-top: 10px; }
.auth-card.glass { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.auth-header { padding: 0; text-align: center; color: white; }
.auth-header.blue { background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%); }
.auth-header.gradient { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.auth-header h3 { font-weight: 700; margin: 0; font-size: 1.6rem; }
.auth-header.large h3 { font-size: 1.8rem; }
.auth-header p { margin: 8px 0 0 0; opacity: 0.95; font-size: 0.9rem; }
.auth-header.large p { margin: 10px 0 0 0; }

.auth-body { padding: 30px; }
.auth-body.compact { padding: 10px 20px; }

.form-label { font-weight: 600; color: #333; margin-bottom: 6px; font-size: 0.9rem; }
.form-label.small { font-size: 0.85rem; }
.form-label .text-danger { font-size: 1rem; }
.form-control { border-radius: 8px; border: 2px solid #e0e0e0; padding: 8px 15px; font-size: 0.95rem; transition: all 0.3s; }
.form-control.small { font-size: 0.9rem; }
.form-control:focus { border-color: #1e88e5; box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.15); }
.form-control:focus.pink { border-color: #fa709a; box-shadow: 0 0 0 0.2rem rgba(250, 112, 154, 0.15); }

.btn-auth { border: none; border-radius: 8px; padding: 12px; font-weight: 600; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; }
.btn-auth.large { padding: 14px; border-radius: 10px; }
.btn-auth.blue { background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%); color: white; }
.btn-auth.gradient { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); color: white; }
.btn-auth:hover { transform: translateY(-2px); }
.btn-auth.blue:hover { box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4); color: white; }
.btn-auth.gradient:hover { box-shadow: 0 10px 25px rgba(250, 112, 154, 0.4); color: white; }

.form-check-input:checked { background-color: #1e88e5; border-color: #1e88e5; }

.divider { text-align: center; margin: 20px 0; position: relative; }
.divider::before { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: #e0e0e0; }
.divider span { background: white; padding: 0 15px; position: relative; color: #999; font-size: 0.85rem; }

.link-primary { color: #1e88e5; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.link-primary:hover { color: #1565c0; }
.link-primary.pink { color: #fa709a; }
.link-primary.pink:hover { color: #fee140; }

.alert { border-radius: 8px; border: none; }
.alert.small { font-size: 0.9rem; }
.alert.rounded { border-radius: 10px; }
.alert-danger { color: #dc2626; }

.icon-input { position: relative; }
.icon-input i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #999; }
.icon-input .form-control { padding-left: 45px; }

.info-box { background: linear-gradient(135deg, #fff5f7 0%, #fffef5 100%); border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #fa709a; }
.info-box i { font-size: 1.5rem; color: #fa709a; }

.row-compact { margin-left: -5px; margin-right: -5px; }
.row-compact > div { padding-left: 5px; padding-right: 5px; }
