:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --gray: #95a5a6;
}
::-webkit-scrollbar {
  display: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.icon {
    padding-left: 8px;
}

.iconws {
    margin-left: 10px;
    color: var(--accent);
    padding-left: 0;
    transition: padding-left 0.5s ease, transform 0.5s ease;
}
.iconws:hover {
    transform: scale(1.2);
    transition: padding-left 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;      /* Cambiado para apilar verticalmente */
    align-items: center;         /* Centra los hijos horizontalmente */
    justify-content: center;
    max-width: 900px;            /* Más estrecho que antes */
    width: 100%;                  /* Ancho relativo para responsividad */
    margin: 0 auto;
    padding: 20px;
}
.main-content {
    text-align: left; /* Justifica el texto a la izquierda */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* margin-top: 10px; */
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}

.tickets-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    gap: 15px;

}

.user, .pass, .email, .role {
    padding: 8px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    width: 200px;
    margin-left: 10px;
}

input[type="password"].error {
    border-color: var(--danger);
    background-color: var(--light);
}

button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
    display: flex; 
    /* margin-left: 10px; */
    margin: auto;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 5);

}
button:hover {
    /* background-color: var(--secondary); */
    transform: scale(0.97);
    transition: background-color 0.3s ease, transform 0.05s;
}


button:active {
    background-color: var(--accent);
    transform: scale(0.97);
    transition: background-color 0.3s ease, transform 0.05s;
}

.button-small {
    padding: 6px 10px;
    font-size: 0.9rem;
}
.button-footer {
    padding: 8px 12px;
    font-size: 0.9rem;
    margin: 0 5px;
}
header {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* img.logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
} */

header h1 i {
    margin-right: 10px;
    color: var(--accent);
}

.main-content {
    flex: 10;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);

}

    footer {
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    color: var(--gray);
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.fa-envelope, .fa-thumbs-up { 
    margin-left: 10px;
    color: var(--accent);
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 765px) {
    .container {
        padding: 15px;
    }
    header h1 {
        font-size: 1.5rem;
    }
    .modal-content {
        width: 95%;
    }
    img.logoFRITZ {
    height: 80px;
    width: auto;
    margin-right: 15px;
    }
    img.logoTIC {
    display: none;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }
    .modal-content {
        width: 95%;
    }
    .user, .pass, .email, .role {
        width: 200px;
        margin-left: 5px;
    }
    button {
        padding: 8px 12px;
        margin-left: 5px;
    }
}