/* ===============================
      DSS REGISTRATION FORM
=============================== */

.dss-register {
    background: #000;
    padding: 90px 8vw;
    color: white;
    text-align: center;
    min-height: 100vh;
}

.dss-register-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.dss-register-title span {
    color: #FF0000;
    text-shadow: 0 0 10px #FF0000;
}

.dss-register-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* ------ FORM BOX ------ */
.dss-register-form {
    max-width: 500px;
    margin: auto;
    background: #0d0d0d;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #111;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
}

/* ------ FORM GROUPS ------ */
.dss-form-group {
    text-align: left;
    margin-bottom: 20px;
}

.dss-form-group label {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
    color: #eee;
}

.dss-form-group input {
    width: 100%;
    padding: 14px;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.dss-form-group input:focus {
    border-color: #FF0000;
    box-shadow: 0 0 8px #FF0000;
}

/* ------ SUBMIT BUTTON ------ */
.dss-register-btn {
    width: 100%;
    padding: 14px;
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.dss-register-btn:hover {
    background: #cc0000;
    box-shadow: 0 0 12px #FF0000;
}

/* ------ LOGIN LINK ------ */
.dss-register-login {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #aaa;
}

.dss-register-login a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.dss-register-login a:hover {
    text-shadow: 0 0 8px #FF0000;
}
