  body {
        min-height: 100vh;
        margin: 0;
        background-image: url("../images/background/bk.png");
        background-repeat: no-repeat;
        background-size: 100%;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 300;
        color: #ffffff;
        background-color: #050509;
    }






    /*otp*/

#otpForm {
  max-width: 420px;
  margin: 24px auto;
  padding: 20px;
  border-radius: 16px;
  background: #0f172a;
  color: #e2e8f0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

#otpForm h3 { margin: 0 0 12px; font-size: 18px; }

.otp {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 14px 0 16px;
}

.otp-box {
  width: 46px;
  height: 54px;
  text-align: center;
  font-size: 22px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.35);
  background: rgba(2,6,23,.55);
  color: #e2e8f0;
  outline: none;
  transition: transform .08s ease, border-color .15s ease, box-shadow .15s ease;
}

.otp-box:focus {
  border-color: #0004ff;
  box-shadow: 0 0 0 4px rgba(56,189,248,.18);
  transform: translateY(-1px);
}

.btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #0004ff;
  color: #0b1220;
  font-weight: 700;
  cursor: pointer;
}

.btn:active { transform: translateY(1px); }

.hint {
  margin: 12px 0 0;
  font-size: 12px;
  opacity: .85;
  text-align: center;
}






    .login-page {
        min-height: calc(100vh - 40px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
    }

    .login-wrapper {
        width: 100%;
        max-width: 1100px;
    }

    .login-card {
        display: flex;
        flex-direction: row;
        background: #050509;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .brand-panel {
        flex: 1;
        background: #0004ff;
        color: #ffffff;
        border: none;
        padding: 2.5rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .brand-panel::before {
        border: none;
        content: "";
        position: absolute;
        inset: -40%;
        background:
            radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
            radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.4), transparent 55%);
        opacity: 0.8;
        pointer-events: none;
    }

    .brand-content {
        position: relative;
        z-index: 1;
    }

    .brand-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .brand-logo img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
    }

    .brand-name {
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 0.10em;
    }

    .brand-title {
        font-size: 3rem;
        font-weight: 300;
    }

    .brand-subtitle {
        font-size: 0.95rem;
        opacity: 0.9;
        max-width: 320px;
    }

    .brand-highlights {
        position: relative;
        z-index: 1;
        margin-top: 2.25rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .badge-pill {
        border-radius: 999px;
        padding: 0.4rem 0.8rem;
        background: rgba(0, 0, 0, 0.24);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        white-space: nowrap;
    }

    .badge-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #0004ff;
        box-shadow: 0 0 12px #0004ff;
    }

    .form-panel {
        flex: 1.2;
        background: #0b0b11;
        padding: 2.5rem 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-inner {
        width: 100%;
        max-width: 380px;
    }

    .form-header {
        margin-bottom: 1.75rem;
    }

    .form-title {
        font-size: 1.2rem;
        font-weight: 300;
        margin: 0;
    }

    .form-subtitle {
        margin-top: 0.35rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .form-floating {
        margin-bottom: 1rem;
    }

    .form-floating > .form-control {
        background: #050509;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #ffffff;
        padding: 0.9rem 0.95rem;
        height: auto;
    }

    .form-floating > .form-control::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

    .form-floating > .form-control:focus {
        border-color: #0004ff;
        box-shadow: 0 0 0 1px rgba(76, 0, 255, 0.7);
        background: #050509;
        color: #ffffff;
    }

    .form-label-custom {
        display: block;
        font-size: 0.76rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.25rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .validation-summary-errors,
    .text-danger {
        font-size: 0.8rem;
    }

    #login-submit {
        width: 100%;
        border: none;
        border-radius: 999px;
        padding: 0.9rem 1.2rem;
        margin-top: 0.25rem;
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        background-color:#0004ff;
        color: #ffffff;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
        transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        cursor: pointer;
    }


    #login-submit-signup {
        width: 100%;
        border: none;
        border-radius: 999px;
        padding: 0.9rem 1.2rem;
        margin-top: 0.25rem;
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        background-color:#0004ff;
        color: #ffffff;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
        transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        cursor: pointer;
    }

    #login-submit-signup:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95);
        opacity: 0.95;
        background-color: #050509;
    }

    #login-submit-signup:active {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9);
    }


    #login-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95);
        opacity: 0.95;
        background-color: #050509;
    }

    #login-submit:active {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9);
    }

    #LEMBRAR {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.82rem;
    }

    #SENDLEMBRAR {
        color: rgba(255, 255, 255, 0.8);
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 46px;
        height: 24px;
        margin-right: 0.5rem;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        inset: 0;
        background-color: #2c2c34;
        transition: 0.3s;
        border-radius: 999px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

    .switch input:checked + .slider {
        background: #0004ff;
        box-shadow: 0 0 12px rgba(76, 0, 255, 0.9);
    }

    .switch input:checked + .slider:before {
        transform: translateX(20px);
    }

    #VIEWERROR {
        margin-top: 1rem;
        background: rgba(255, 77, 77, 0.1);
        border: 1px solid rgba(255, 77, 77, 0.4);
        border-radius: 10px;
        padding: 0.65rem 0.8rem;
        font-size: 0.85rem;
        color: #ffd000;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    #VIEWERROR i {
        color: #ffd00;
    }

    #FOOTERPROSPERA {
        margin-top: 1.5rem;
        font-size: 0.75rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 991.98px) {
        body{
            background: #0004ff;
        }
        .login-card {
            flex-direction: column;
        }

        .brand-panel {
            padding: 1.75rem 1.5rem;
        }

        .brand-title {
            font-size: 1.6rem;
        }

        .form-panel {
            padding: 2rem 1.75rem;
        }
    }

    @media (max-width: 575.98px) {
        .brand-highlights {
            grid-template-columns: 1fr;
        }

        .form-panel {
            padding: 1.75rem 1.35rem;
        }

        .form-title {
            font-size: 1.4rem;
        }
    }

 



#CADASTRE a{
  font-weight: 500;
  color: #00ffb3;
  text-decoration: none;
}

#CADASTRE{
  text-align: center;
  text-decoration: none;
  padding: 20px;
}