/*
 * Nombre del archivo: styles.css
 * Autor: mercadearse
 * Version: 1.0.5
 * Updated: 2024-05-31
 */

*{
    font-family: Helvetica, sans-serif;;
 }

body {
    margin: 0 auto;
    padding: 5px;
    background-color: #f6f7f8;
    max-width: 700px;
}

textarea,
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="date"],
input[type="time"] {
    font-size: 16px !important;
}

#Firma, #Outlook, #Webmail {
    background-color: #fff;
    min-height: 965px;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin: 25px 0;
}

.tabs {
    overflow: hidden;
    border-bottom: 1px solid #47636950;
}

.tablinks {
    background-color: #f6f7f8;
    float: left;
    border: 1px solid #47636950;
    border-radius: 10px 10px 0 0;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: #0e2348;
    margin: 0;
}

.tablinks:hover {
    background-color: #ffffff;
}

.tablinks.active {
    background-color: #2d405d;
    color: #f6f7f8;
}

.tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #47636950;
    border-top: none;
    min-height: 900px;
}

form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

label {
    display: block;
    margin-right: 5px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2d405d;
}

input, select {
    width: 57vw;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #47636950;
    border-radius: 5px;
    max-width: 400px;
}

.input-group-text {
    padding: 10px 10px 8.5px 10px;
    border: 1px solid #47636950;
    background-color: #e9ecef;
    color: #495057;
    font-size: 14px;
}

#telefono{
    border-radius: 0 5px 5px 0;
    margin-left: -5px;
}

.input-group-prepend {
    border-right: none;
    border-radius: 5px 0 0 5px;
}

#email{
    border-radius: 5px 0 0 5px;
    margin-right: -5px;
}

.input-group-append {
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.fields_group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    margin: 5px;
}

button {
    background-color: #ff4b73;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

button:hover {
    background-color: #2d405d;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 48%;
    margin: 1%;
}

.button-group {
    display: flex;
    justify-content: space-between;
}

footer {
    text-align: center;
    background-color: #f6f7f8;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    align-content: center;
}

footer p{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    align-items: center;
    font-size: 10px;
}

footer img {
    width: 80px;
    height: auto;
    padding-left: 10px;
}

@media (max-width: 700px){
    #telefono{
        width: 37vw;
    }
    
    #email{
        width: 22vw;
    }
}