body { background: #ffebeb; font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
.card { background: white; padding: 30px; border-radius: 20px; width: 350px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.title { font-size: 24px; font-weight: bold; text-align: center; color: #ff8a8a; margin-bottom: 20px; }
.tabs { display: flex; gap: 5px; margin-bottom: 20px; }
.tab { flex: 1; padding: 10px; border: 1px solid #ff8a8a; background: white; cursor: pointer; border-radius: 5px; }
.tab.active { background: #ff8a8a; color: white; }
.input-group { margin-bottom: 15px; }
input { width: 100%; padding: 10px; box-sizing: border-box; border: 1px solid #ddd; border-radius: 5px; }
.btn-submit { width: 100%; padding: 10px; background: #ff8a8a; color: white; border: none; border-radius: 5px; cursor: pointer; }