/* Shared Custom Landing Page Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 120px;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(91, 33, 182, 0.06), transparent 40%),
                #fbfaff;
    min-height: 100vh;
    margin: 0;
}
.navbar {
    padding: 0.8rem 4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 30px rgba(109, 40, 217, 0.03);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.navbar-brand img {
    height: 48px;
    width: auto;
}
.navbar-brand h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #0f172a;
    margin: 0;
    font-weight: 850;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.register-container {
    max-width: 440px;
    margin: 2rem auto 4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.08);
}
.register-container h2 {
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: #1e1b4b;
    text-align: center;
    font-weight: 800;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e1b4b;
    font-weight: 600;
    font-size: 0.88rem;
}
.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.2s;
    color: #1e293b;
}
.form-group input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}
.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.25);
    transition: all 0.3s;
    margin-top: 1rem;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(124, 58, 237, 0.35);
}
.text-center {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6e647e;
}
.text-center a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 700;
}
.text-center a:hover {
    text-decoration: underline;
}
.alert-floating {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
}
.status--error {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 5px solid #ef4444;
    border: 1px solid #fee2e2;
}
@keyframes slideIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
