/* ceg_logi_estilos.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff, #e6f2ff);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container,
.registro-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 360px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h2 {
    color: #002a7d; /* Azul oscuro del logo */
    margin-bottom: 24px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

button {
    width: 100%;
    background-color: #002a7d; /* Azul oscuro del logo */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #0056cc;
}

.success {
    color: #0088cc; /* Celeste del logo */
    background-color: #e0f7ff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.error {
    color: #d00000;
    background-color: #ffe5e5;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.registro-link,
.login-link {
    margin-top: 20px;
    font-size: 14px;
}

.registro-link a,
.login-link a {
    color: #0056cc;
    text-decoration: none;
    font-weight: bold;
}
