body {
    margin: 0;
    padding: 0;
    background: url('../img/fondos/fondo_p2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    background-color: rgb(255 255 255 / 60%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 68%);
    width: 70%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"], input[type="file"] {
    width: 85%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 50%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}