/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1e1e2f;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
}

.container {
    background: rgba(40, 40, 60, 0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 15px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #00bfff;
}

.info {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ddd;
    text-align: left;
}

hr {
    border: 1px solid #333;
    margin: 10px 0;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.form label {
    font-weight: bold;
    color: #cccccc;
}

/* Inputs estilos */
.form input[type="text"],
.form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #2e2e40;
    color: #fff;
    font-size: 1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    outline-offset: 2px;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus {
    background-color: #3a3a5a;
    box-shadow: 0 0 5px #ff00bf;
    outline: none;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    background: #ff00bf;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
}

.btn:hover {
    background: #bc00cd;
}

.btn:active {
    background: #a000aa;
}

.btn:disabled {
    background: #555;
    cursor: not-allowed;
}

.btn-secondary {
    background: #444;
    color: #ccc;
}

.btn-secondary:hover {
    background: #666;
}

strong {
    color: #ff9800; /* Naranja más brillante */
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .btn-group {
        flex-direction: column;
    }
}
