        html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            background-image: url('/images/bg.jpg');
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            font-family: Arial, Helvetica, sans-serif;
            position: relative;
        }

        body:before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, .60);
            z-index: 0;
        }

        .container-cadastro {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 15px;
        }

        .card-cadastro {
            background: rgba(255, 255, 255, .96);
            border-radius: 18px;
            padding: 35px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
            max-width: 550px;
            width: 100%;
        }

        .logo-terreiro {
            max-width: 180px;
            margin-bottom: 20px;
        }

        .titulo {
            color: #2c4f4f;
            font-weight: bold;
            margin-top: 0;
        }

        .subtitulo {
            color: #666;
            margin-bottom: 30px;
        }

        .form-group label {
            font-weight: 600;
            color: #444;
        }

        .form-control {
            height: 48px;
            border-radius: 8px;
            box-shadow: none;
        }

        .btn-cadastro {
            background: #2c7a63;
            border-color: #2c7a63;
            color: #fff;
            font-weight: bold;
            padding: 12px;
            font-size: 16px;
            border-radius: 8px;
        }

        .btn-cadastro:hover {
            background: #245f4e;
            border-color: #245f4e;
            color: #fff;
        }

        .footer-info {
            text-align: center;
            margin-top: 20px;
            color: #777;
            font-size: 12px;
        }

        @media (max-width:768px) {

            .card-cadastro {
                padding: 25px;
            }

            .logo-terreiro {
                max-width: 140px;
            }

            .titulo {
                font-size: 28px;
            }

        }



.senha-wrapper {
    position: relative;
}

.senha-wrapper .form-control {
    padding-right: 45px;
}

.btn-toggle-senha {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #333;
    cursor: pointer;
    z-index: 5;
    box-shadow: none;
}

.btn-toggle-senha:hover,
.btn-toggle-senha:focus,
.btn-toggle-senha:active {
    outline: none;
    background: transparent;
    box-shadow: none;
    color: #2c7a63;
}

.modal-custom {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.modal-custom .modal-body {
    padding: 35px 28px 30px;
}

.modal-icone {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f5ef;
    color: #2c7a63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.modal-titulo {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #183f35;
}

.modal-mensagem {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-modal-ok {
    background: #2c7a63;
    color: #fff;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    border: none;
}

.btn-modal-ok:hover,
.btn-modal-ok:focus {
    background: #235f4e;
    color: #fff;
}