body {
    font-family: Arial, sans-serif;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('img/fondo2.jpg');
    background-size: cover; /* Ajusta la imagen para que cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}

.container {
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.295); /* Fondo semitransparente */
    backdrop-filter: blur(20px); /* Difuminado */
    color: white;
}

input {
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    background-color: gray;
    font-weight: bold;
    font-size: 20px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    margin-top: 9px;
    font-weight: bold;
    font-size: 20px;
}

button:hover {
    background-color: #0056b3;
}

::placeholder{
    color:white
}

label{
    font-weight: bold;
    color: white;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    margin-top: 5px;
    text-decoration: none;
    border-radius: 100px;
    color: white;
    transition: all 0.25s ease;
}

.github-btn i {
    font-size: 40px;
}

.github-btn:hover {
    transform: translateY(-4px) scale(1.03);
    color: black;
}

.github-btn:active {
    transform: scale(0.98);
}