body {
    background: url('../image/fondochatsoporte.jpg') no-repeat center center fixed;
    font-family: Arial, sans-serif;
    background-color: #f3f0f8; /* morado claro */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 100px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.2); /* sombra morada */
    padding: 25px;
    text-align: center;
    border-top: 4px solid #800080; /* línea decorativa morada */
}

h1 {
    margin-bottom: 20px;
    color: #4b0082; /* índigo */
}

label {
    display: block;
    margin-bottom: 8px;
    color: #4b0082;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="tel"],
select {
    width: 90%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #b19cd9; /* morado claro */
    border-radius: 5px;
    background-color: #faf8fc;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: #800080;
    box-shadow: 0 0 5px rgba(128, 0, 128, 0.3);
}

a {
    color: #800080;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #5e007e;
}

button {
    background-color: #800080;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5e007e;
}

.error {
    color: #cc0000;
    background-color: #fdd;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.toggle-password label {
    color: #4b0082;
    font-size: 0.95em;
}
