.register-page {
    max-width: 420px;
    margin: 60px auto;
    padding: 30px;
    background: #1e2533;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: center;
}

.register-page h2 {
    margin-bottom: 25px;
    color: #e0e6f0;
}

.register-page input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #3a4458;
    border-radius: 6px;
    background: #2a3142;
    color: #fff;
    font-size: 14px;
}

.register-page input:focus {
    outline: none;
    border-color: #4da3ff;
    box-shadow: 0 0 5px rgba(77,163,255,0.5);
}

.register-page button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4da3ff, #2d7be5);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.register-page button:hover {
    background: linear-gradient(135deg, #5fb0ff, #3a8cff);
}

.privacy-policy {
    text-align: left;
    font-size: 13px;
    color: #bfc7d5;
    margin-bottom: 15px;
}

.privacy-policy input {
    margin-right: 6px;
}

.privacy-policy a {
    color: #4da3ff;
    text-decoration: underline;
}

.error {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.success {
    color: #4cd964;
    margin-bottom: 10px;
}