@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --background-color: black;
    --text-color: white;
    --background-color-container: #181818;
    --background-color-container-hover: #D9D9D933;
    --detalhes-pedidos-color: #00ABFA;
    --detalhes-pedidos-color-hover: #00abfa51;
    --hr-color: #838383;

}
  
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    font-family: 'Inter', sans-serif;
}


.logo {
    display: flex;
    align-items: center;
    height: 60px;
    flex-shrink: 0;
    position: relative;
    top: 20px;
    /* margin: 40px 0px 100px 0px; */
}

.logo img {
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 7.03px;
    width: 33%;
    max-width: 400px;
    min-width: 330px;
    border: 1px solid #3A3A3A;
    box-shadow: 7.91px 24.61px 165.78px 0px #85858557;
    box-sizing: border-box;
    position: relative;
    top: 25vh;

}

.title {
    margin-top: 0px;
    margin-bottom: 10px;
    /* margin: 0px 15px 10px 15px; */
    color: var(--text-color);
    font-family: Inter;
    font-weight: 600;
    font-size: 29.87px;
    text-align: center;
}

.description {
    width: 238px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #A3A3A3;
    margin-bottom: 20px;
    box-sizing: border-box;
    margin:  0px auto 20px auto;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: black;
    color: white;
    font-family: "Inter", sans-serif;
}

.submit-btn {
    width: 100%;
    background-color: var(--text-color);
    color: black;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer !important;
    padding: 10px 20px;
    font-size: 16px;
    border: 0.8px solid #EEEEEE;
    font-family: "Inter", sans-serif;
} 

.submit-btn:hover {
    background-color: #D9D9D9;
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
    
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 300px;
    }

    .container {
        width: 100%;
    }
}
