body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at 50% 20%, #161616, #000000 60%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}



/* CARD */
.register-container {
    position: relative;
    z-index: 1;
}

.register-card {
    width: 430px;
    padding: 50px 40px;
    border-radius: 20px;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}



/* TEXT */
.brand {
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
}

h1 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    opacity: 0.6;
    margin-bottom: 35px;
}

/* INPUTS */
.input-group {
    margin-bottom: 22px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: white;
    outline: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.input-group input:focus {
    border: 1px solid rgba(56,189,248,0.6);
    box-shadow: 0 0 15px rgba(56,189,248,0.3);
}

/* TERMS */
.terms {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 25px;
}

.terms span {
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* BUTTON */
.register-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: white;
    color: black;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.register-btn:hover {
    background: #38bdf8;
    transform: translateY(-2px);
}

/* LINKS */
.links {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.links a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.links a:hover {
    opacity: 0.9;
}
