.login {
    background: none;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(300px + 3vmin);
    text-align: center;
}

.login h2 {
    margin-bottom: 20px;
}

.login label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.login input {
    width: 100%;
    background: transparent;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login button:hover {
    background-color: #45a049;
}

.registro {
    background: none;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.registro h2 {
    margin-bottom: 20px;
}

.registro label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.registro input {
    width: 100%;
    background: transparent;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.registro button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.registro button:hover {
    background-color: #45a049;
}
