/* /assets/css/register.css */
:root { --primary-color: #1a73e8; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #f0f2f5; font-family: sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; }

.reg-container { width: 100%; max-width: 450px; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.reg-header { text-align: center; margin-bottom: 25px; }
.reg-header h2 { color: var(--primary-color); }

.form-group { margin-bottom: 15px; position: relative; }
.form-group label { display: block; margin-bottom: 5px; font-size: 14px; color: #555; }

.input-wrapper { position: relative; display: flex; align-items: center; }
input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; outline: none; }
input:focus { border-color: var(--primary-color); }

/* ´« ¸ð¾ç ¾ÆÀÌÄÜ ½ºÅ¸ÀÏ */
.toggle-password {
    position: absolute; right: 12px; cursor: pointer; color: #777; font-size: 18px;
}

button { width: 100%; padding: 14px; background: var(--primary-color); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: bold; cursor: pointer; margin-top: 10px; }
.msg { padding: 10px; border-radius: 6px; margin-bottom: 15px; text-align: center; font-size: 14px; }
.error { background: #fce8e6; color: #d93025; }
.success { background: #e6f4ea; color: #1e8e3e; }