body{
    background: #090909;
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container{
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}

.flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.top{
    padding: 50px 0;
}

.btn{
    font-weight: 600;
    font-size: 16px;
    color: black;
    padding: 16px 33px;
    background: linear-gradient(#FEA014, #FFD004);
    border: 1px solid #FEA014;
    border-radius: 3px;
    cursor: pointer;
}

.perfil{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.nome{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nome h2{
    font-size: 26px;
    color: #fff;
    margin: 0;
}
.nome p{
    font-size: 16px;
    color: #ABABAB;
    margin: 0;
}

.not{
    font-size: 16px;
    color: #ABABAB;
    text-align: center;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

table.visible {
    opacity: 1;
    transform: translateY(0);
}

thead {
    background-color: #1f1f1f;
}

tbody tr {
    background-color: #161616;
}

tbody tr:hover {
    background-color: #1c1c1c;
}

tbody tr td {
    border-bottom: 1px solid #2c2c2c;
}

tbody tr:last-child td {
    border-bottom: none;
}

th, td {
    padding: 15px;
    font-size: 14px;
    text-align: left;
}

th {
    color: #ABABAB;
    font-weight: 600;
}

td {
    color: #fff;
}

td strong {
    color: #fff;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    align-items: center;
    flex-direction: row;
}

.search-box input {
    padding: 15px;
    border: 1px solid #2c2c2c;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

.search-box input:focus-visible {
    border: 1px solid #ffffff4a;
    outline: none;
}

input {
    color-scheme: dark;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
border: 1px solid #2c2c2c !important;
-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
transition: background-color 5000s ease-in-out 0s !important;
}

.search-box input:selected {
    background-color: #1a1a1a;
}


.search-box button {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(#FEA014, #FFD004);
    border: 1px solid #FEA014;
    color: black;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.search-box button:hover {
    background-color: #ea580c;
}

.login{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.status-ativo {
    color: green;
    font-weight: bold;
}

.status-pendente {
    color: orange;
    font-weight: bold;
}

.status-expirado {
    color: red;
    font-weight: bold;
}

.status-desconhecido {
    color: gray;
    font-weight: bold;
}

/* Estilos para a notificação */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}
.notification.show {
    opacity: 1;
    transform: translateY(0);
}
.notification.error {
    background-color: #dc3545;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.act{
    display: flex;
}

.modal-content {
    background: #121212;
    padding: 30px;
    border-radius: 8px;
    color: white;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content h2 {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
}

.modal-content label {
    font-size: 14px;
    color: #bbb;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #1c1c1c;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.modal-content input:focus {
    border-color: #fea014;
    outline: none;
}

.modal-content hr{
    display: block;
    margin: 30px auto;
    height: 1px;
    border: 0;
    background: #333333;
}

.modal-content #form-cadastro hr{
    opacity: 0;
    margin: 5px auto;
}

.modal-content .cancelar{
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    padding: 15px 33px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 3px;
    cursor: pointer;
    width: 50%;
}

.modal-content .registrar{
    font-weight: 600;
    font-size: 16px;
    color: black;
    padding: 15px 33px;
    background: linear-gradient(#FEA014, #FFD004);
    border: 1px solid #FEA014;
    border-radius: 3px;
    cursor: pointer;
    width: 50%;
}

.modal-content .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.modal-content .row .input-half {
    width: 50%;
}


@media (max-width:767px){
    .search-box{
        flex-direction: column;
        gap: 15px;
    }
    .search-box input,
    .search-box button{
        width: 100%;
        max-width: 100%;
    }
    .login{
        width: 80%;
    }
}