    /* general */
    
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        transition: background-color 5000s ease-in-out 0s;
        /* color: red; */
    }
    /*Change text in autofill textbox*/
    
    input:-webkit-autofill {
        /* background-color: red; */
        -webkit-text-fill-color: rgb(255, 255, 255) !important;
    }
    /* section */
    
    section {
        position: relative;
        width: 100%;
        height: 100%;
        align-items: center;
        display: grid;
        justify-content: center;
        min-height: 100vh;
        background-color: black;
    }
    
    section:before {
        content: "";
        background-size: cover;
        background-repeat: no-repeat;
        -webkit-background-attachment: fixed;
        -moz-background-attachment: fixed;
        -o-background-attachment: fixed;
        -ms-background-attachment: fixed;
        background-position: bottom;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0.4;
    }
    
    section .card {
        max-width: 800px;
        min-width: 500px;
        border-radius: 25px;
        background-color: black; 
    }
    
    section .card,
    section .card-header,
    section .card-body {
        border: none;
    }
    /* formulario */
    
    section form .form-control {
        background: transparent;
        color: white;
        padding: 25px 15px;
        font-size: 15px;
        border: none;
        background-color: rgb(255, 255, 255, 0.2);
        border: 1px solid rgb(255, 255, 255, 0.2);
    }
    
    section form .form-control,
    section form button[type="submit"] {
        border-radius: 25px;
    }
    
    section form .form-control:focus {
        background: transparent;
        border: 1px solid rgb(255, 255, 255, 0.2);
        color: white;
    }
    
    section form input::placeholder {
        color: white !important;
    }
    
    section form button[type="submit"] {
        /* border: 1px solid #f2e407; */
        color: black;
        font-size: 20px;
        background-color: #eee;
        padding: 10px;
        /* border: 2px solid #256b74; */
    }
    
    section form button[type="submit"]:hover {
        background-color: #000000;
        color: white;
    }
    /* custom */
    
    .bb {
        width: fit-content;
        position: relative;
    }
    
    .bb:before {
        content: "";
        border: 3px;
        border-color: #f2e407;
        border-style: solid;
        position: absolute;
        width: 100%;
        top: 40px;
    }