﻿body {
    font-family: Tahoma;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 350px;
    margin: 15px auto;
    padding: 15px 50px;
    background-color: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

    .logo img {
        max-width: 50%;
        height: auto;
    }

.tab-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .tab-buttons button {
        flex: 1;
        padding: 10px;
        margin: 0 5px;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        color: #fff;
        font-size: 16px;
    }

        .tab-buttons button.active {
            background: #008a3d 0% 0% no-repeat padding-box;
        }

        .tab-buttons button:not(.active) {
            background-color: transparent;
            border-color: #cfcfcf;
            color: #333;
            border-style: solid;
            border-width: 1px;
        }

.tab-content {
    display: none;
}

    .tab-content[data-tab="1"] {
        display: block;
    }

.tab-buttons button.active {
    background-color: #008a3d;
    color: #fff;
    border: none;
}

.tab-buttons button:not(.active) {
    background-color: transparent;
    border: 1px solid #cfcfcf;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #333;
    }


    .form-group select {
        width: 100%;
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

    .form-group input {
        width: 94%;
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

        .form-group input:focus {
            border-color: #0b8e2e;
            outline: none;
        }

.btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background: #008a3d 0% 0% no-repeat padding-box;
    border: none;
    border-radius: 0px;
    cursor: pointer;
}

    .btn:hover {
        background-color: #096c24;
    }

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #909092;
    text-decoration: none;
    margin-top: 15px;
    font-size: 12px;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    padding: 20px 50px;
    background-color: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

    .footer img {
        max-width: 100px;
        margin: 0 45px;
        vertical-align: middle;
    }

    .footer .logo-linx {
        max-width: 60px;
    }

    .footer .logo-febravar {
        max-width: 150px;
    }

    .footer span {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        color: #333;
    }


/* Estilo geral para input-group */
.input-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Span do texto (equivalente ao input-group-text) */
.input-group-text {
    background-color: #f8f9fa;
    border: none;
    padding: 10px 15px;
    color: #495057;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
}

/* Estilo do campo de entrada (equivalente ao form-control) */
.input-group .form-control {
    flex: 1;
    padding: 14px;
    border: none;
    font-size: 14px;
    outline: none;
}

/* Botão do grupo (equivalente ao input-group-btn) */
.input-group .input-group-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    /* Efeitos de foco e hover */
    .input-group .input-group-btn:hover {
        background-color: #0056b3;
    }

.input-group .form-control:focus {
    background-color: #f1f8ff;
}

.input-group-text, .input-group-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}


.hidden-radio {
    display: none;
}

.radio-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #007bff;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
}

    .radio-button.active,
    .hidden-radio:checked + .radio-button {
        background-color: #008a3d;
        border-color: #008a3d;
    }
