*{
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
}


body {
    background: #191E29;
    padding-bottom: 0;
}

.mi {
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 60px;
    color: #00FF7F;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: transparent;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
    z-index: 1000;
}

.navbar:hover {
    background-color: #191E29;
    border-bottom: 1px solid #00FF7F;
}

.navbar-nav {
    transition: background-color 0.3s ease;
}

@media (max-width: 700px) {
    .navbar-nav {
        background-color: #191E29; 
    }
}


#dacc {
    width: 150px;
    height: 50px;
    padding: 5px;
}

#nav-link {
    color: #00FF7F;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}
#nav-link:hover {
    color: #ffffff;
}

#menu {
    width: 45px;
    height: 45px;
    padding: 5px;
}

button.navbar-toggler {
    outline: none;
    box-shadow: none;
    border: none;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}




.footer-container{
    padding-top: 50px;
}

.text-center {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #191E29;
    border-top: 1px solid #00FF7F;
    color: #F2BF00;
    text-align: center;
    padding: 10px 0;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 16px;
}

.text-body {
    color: #fff !important;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 16px;
}



/* Estilos del formulario */
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    background-color: #191E29;
    border-radius: 15px;
    transition: .4s ease-in-out;
    border: 1px solid #00FF7F;
    margin: auto;
}

.form:hover {
    transform: scale(1.05);
}

#heading {
    text-align: center;
    margin: 1em;
    color: #00FF7F;
    font-size: 1.3em;
}

.field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border-radius: 15px;
    padding: 0.6em;
    border: none;
    outline: none;
    color: white;
    background-color: #252B3A;
    box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}

.input-icon {
    height: 1.2em;
    width: 1.2em;
    fill: #00FF7F;
}

.input-field {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #F2BF00;
}

/* Botones del formulario */
.form .btn {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 1.5em;
}

.button1{
    padding: 0.5em 1.2em;
    border-radius: 6px;
    border: none;
    outline: none;
    transition: .4s ease-in-out;
    background-color: #252B3A;
    color: #00FF7F;
    font-weight: bold;
    font-size: 0.9em;
}

.button1:hover {
    background-color: #F2BF00;
    color: black;
}

p {
    color: white; /* Asegúrate de que tenga un color visible */
    font-weight: bold;
}