/* /true-register/style.css */
:root {
    --true-primary: #ff5c58; 
    --true-primary-hover: #e04b47;
    --true-bg: #ffffff;
    --true-text: #333333;
}

.true-container {
    max-width: 450px;
    margin: 40px auto;
    background: var(--true-bg);
    color: var(--true-text);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

.true-container h2 { text-align: center; margin-top: 0; color: var(--true-text); }
.true-container label { display: block; margin-bottom: 5px; font-weight: bold; }
.true-container input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 8px; box-sizing: border-box; }

.true-container button, .true-submit-btn {
    width: 100%;
    background: var(--true-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.true-container button:hover, .true-submit-btn:hover { background: var(--true-primary-hover); }
.true-success { background: #eaffea; padding: 15px; border-radius: 8px; text-align: center; }
.true-notice { background: #f0f9ff; padding: 15px; border-left: 5px solid var(--true-primary); }
.true-link { color: var(--true-primary); text-decoration: none; font-weight: bold; }