@font-face {
    font-family: 'Aeonik';
    src: url('/assets/fonts/Aeonik-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'AeonikBold';
    src: url('/assets/fonts/Aeonik-Bold.otf') format('opentype');
}

:root {
    --cor3: #9D9D9D;
    --feedback-success-original: #52CC6C;
    --neutral-darkest: #595961;
    --neutral-dark: #9D9D9D;
}

* {
    font-family: 'Aeonik', sans-serif;
}

body {
    background-color: var(--secondary-color);
    font-family: 'Aeonik', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Aeonik', sans-serif;
}

.font-bold {
    font-family: 'AeonikBold', sans-serif;
}

.font-white {
    color: #FFF;
}

.font-neutral {
    color: var(--neutral-darkest, #595961);
    font-feature-settings: 'clig' off, 'liga' off;
}

header {
    height: 88px;
    max-width: 100%;
    background-color: #FFF;
}

.header-padding {
    padding-left: 64px !important;
    padding-right: 48px !important;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #303FA0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.4);
    border-top: 4px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

main {
    padding-left: 64px !important;
    padding-right: 48px !important;
}

#sidebarMenu {
    height: 99vh;
    overflow: hidden;
}

#sidebarTop {
    height: 30%;
    overflow: hidden;
}

.bg-bc-primary {
    background-color: var(--primary-color);
}

img.logo-header {
    max-width: 135px;
    width: 100%;
    max-height: 40px;
    height: auto;
    margin: 0px auto;
    margin-left: 60px;
    margin-top: 50px;
    padding: 0 0;
}

.sidebar-sticky {
    width: 80%;
    margin-top: 30%;
    margin-left: 10%;
}

.custom-div {
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
}

.custom-div input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    margin-right: 5px;
    height: 40px;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.text-gray {
    color: #9D9D9D;
}


.verification {
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
}

.div-error {
    background-color: #FFECE9;
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 5px;
}

.div-success {
    background-color: #E1FFEA;
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 5px;
}

.sidebar-footer {
    background-color: rgba(0, 0, 0, 0.2);
    width: 70%;
    margin-top: 50%;
    margin-left: 15%;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
}

.text-style {
    margin-left: 5px;
    margin-right: 5px;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    letter-spacing: 0px;
    font-weight: 0;
}

.method-buttom {
    height: 80px;
    width: 100%;
    background-color: #FFF;
    border: 1px solid #F2F2F2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.a-return-login {
    color: #000000;
    text-decoration: none;
}

.otp-container {
    display: flex;
    justify-content: space-between;
    width: 65%; /* Ajuste conforme necessário */
}

.otp-input {
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    border: 2px solid rgb(157, 157, 157, 1);
    margin: 0;
    padding: 5px;
}

.otp-input-error {
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #ccc;
    margin: 0;
    padding: 5px;
    border-color: red;
    background-color: rgb(255, 236, 233, 1);
}

#timer {
    color: #0096FF;
}

.icon-refund-alert{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 123px;
    height: 123px;
    background-color: #CCEAFF;
}
