body {
    font-family: Arial, sans-serif;
    background-color: #3B0B59;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.login-container {
    background-color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
}

button {
    background-color: #7c1ec3;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 40%;
    display: inline-block;
    
}

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


.boton-cancelar  {
    background-color: #3B0B59;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 40%;
    display: inline-block;
    
}
.boton-cancelar:hover {
    background-color: #250332; /* Color original al pasar el ratón */
}
.boton{
    background-color:#3B0B59;
}
h2{
    color: #ffffff;
}

p{
    color : #ffffff;
}