/* Import de fuentes */
@import url('https://solargentinotv.com.ar/assets/fonts/Gilroy/Gilroy.css');
@import url('https://fonts.cdnfonts.com/css/minecraftia');

* {
    box-sizing: border-box;
    font-family: 'Gilroy';
}

::selection {
    color: #222;
    background: #00ff88;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: #111;
    padding: 1rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    border: 2px solid #A0A0A0;
    padding: 0.3rem 0.8rem;
    transition: 0.2s;
    font-size: 0.95rem;
}

.navbar a:hover {
    background: #A0A0A0;
    color: #000;
}

/* Form Section */
.form-section {
    max-width: 400px;
    margin: 4rem auto;
    background: #111;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #A0A0A0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.form-section h2 {
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    text-align: left;
    font-size: 0.9rem;
    color: #aaa;
}

input {
    padding: 0.6rem;
    border-radius: 6px;
    border: 1px solid #A0A0A0;
    background: #000;
    color: #fff;
}

input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}

/* Botones */
.btn {
    padding: 0.8rem;
    background: #3c8527;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    background: #2c631c;
    border: 1px solid #00ff88;
}