body{
    background-color: rgb(32, 30, 30);
    color: white;
}

.inici-section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    border: 1px solid #212222;
    box-shadow: 0px 0px 10px rgba(117, 117, 117, 0.1);
    text-align: left;
}
h2 {
    text-align: center;
}

.btn-group .button {
    background-color: #64a8d6;
    border: 1px solid #538cb3;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    float: left;
}

.btn-group2 .button2{
    background-color: #64a8d6;
    border: 1px solid #538cb3;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-group2 .button2:not(:last-child) {
    border-right: none;
  }
  
  .btn-group2 .button2:hover {
    background-color: #3d8fc6;
  }

.button2:hover{

    box-shadow: 0 12px 16px 0 rgba(207, 207, 207, 0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}


.btn-group .button:not(:last-child) {
    border-right: none;
  }
  
  .btn-group .button:hover {
    background-color: #3d8fc6;
  }

.button:hover{

    box-shadow: 0 12px 16px 0 rgba(207, 207, 207, 0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

a:link{
    color: #64a8d6;
}

a:visited{
    color: #1781c8;
}

a:hover{
    color: #8abee1;
}

nav {
    display: flex;
    margin-bottom: 20px;
}

form {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    border: 1px solid #212222;
    box-shadow: 0px 0px 10px rgba(117, 117, 117, 0.1);
    width: 350px;
    text-align: center;
}

input, textarea {
    width: 95%;
    margin: 5px 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.solicitud{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.linux-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.linux-top li {
    text-align: center;
    background-color: #2c2f33;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.linux-top img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .linux-top {
        flex-direction: column;
        align-items: center;
    }

    .linux-top li {
        width: 80%;
    }
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* Espacio para el icono */
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.hint {
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

#message {
    display: none;
    background: #f1f1f1;
    color: #000;
    padding: 10px;
    margin-top: 10px;
}

#message p {
    padding: 5px;
    font-size: 14px;
}

.valid {
    color: green;
}

.valid:before {
    content: "✔ ";
}

.invalid {
    color: red;
}

.invalid:before {
    content: "✖ ";
}