/* ================================
   GLOBAL
================================ */
body {
    font-family: 'Open Sans', sans-serif;
    background: #f4f6f8;
    color: #212529;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ================================
   CONTAINER
================================ */
.register-container {
    width: 100%;
    max-width: 460px;
    padding: 20px;
}

/* ================================
   CARD
================================ */
.register-card {
    background: #ffffff;
    padding: 32px 30px;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(90, 43, 216, 0.18);
    border-top: 6px solid #9b5cff;
}

/* ================================
   HEADER
================================ */
.register-header {
    text-align: center;
    margin-bottom: 20px;
}

.register-icon {
    width: 140px;
    margin-bottom: 8px;
}

.register-header h2 {
    color: #5a2bd8;
    font-weight: 800;
}

/* ================================
   FORM
================================ */
.form-group label {
    font-weight: 600;
    color: #5a2bd8;
}

.form-control,
textarea.form-control {
    border-radius: 14px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.form-control:focus,
textarea.form-control:focus {
    border-color: #9b5cff;
    box-shadow: 0 0 0 0.2rem rgba(155, 92, 255, 0.22);
}

/* ================================
   BUTTON
================================ */
.btn-accent {
    background: linear-gradient(180deg, #9b5cff, #5a2bd8);
    color: #ffffff;
    border-radius: 14px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(90, 43, 216, 0.35);
    filter: brightness(1.05);
}

/* ================================
   LINKS (PINK ACCENT)
================================ */
.link-accent {
    color: rgba(236, 72, 153, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.link-accent:hover {
    text-decoration: underline;
    color: #ec4899;
}

/* ================================
   ALERTS
================================ */
.alert {
    border-radius: 12px;
}
.back-login-link {
    color: rgba(236, 72, 153, 0.85);
    font-weight: 600;
    text-decoration: none;
}

.back-login-link:hover {
    color: #ec4899;
    text-decoration: underline;
}
