

   .nav-link {
      text-decoration: none;
      color: white;
      padding: 10px 15px;
    
    }
    .navbar-brand {
        color:white;
    }
    

.login-container {
    margin-top: 5%;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}


.login-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-left: 10px;
    background-color: #f9f9f9;
}

.input-icon img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.input-icon input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    background-color: transparent;
    outline: none;
    font-size: 16px;
}

.input-icon input:focus {
    outline: none;
}

.required-fields {
    font-size: 14px;
    color: #888;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: left;
}

.form-actions {
    text-align: right;
}

button {
    background-color: #5a2631;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #451b22;
}
/* --------------------- RESPONSIVIDAD --------------------- */
@media (max-width: 900px) {
    .login-container {
        margin-left: auto; /* 👈 En pantallas medianas, se centra */
        margin-right: auto;
    }
}

@media (max-width: 700px) {


    .login-container {
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        font-size: 1.3em;
    }

    button {
        width: 100%;
        font-size: 15px;
    }
}

