@import url(variables.css);

@font-face {
    font-family: 'Poppins';
    src: url('/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.fa-angle-left {
    color: #209f00;
}

input {
    outline: none;
    padding: 0 2px;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #1b1b1b;
    border: 1px solid #414141;
    width: 40px;
    height: 40px;
    margin: 1rem;
}

h1,
h2,
h3 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

body {
    background-color: var(--background-color);
}

.container {
    margin: 2rem 1rem;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   

}

.dc,
.ddt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #1b1b1b;
    width: 95%;
    border-radius: 6px;
    border: 1px solid #414141;
    color: #f2f2f2;
    padding: 1rem ;
    justify-content: space-between;

}

.motive {
    height: 100px;
    width: 170px;
    border: none;
    outline: none;
    resize: none;
    font-weight: 600;
    border-radius: 2px;
    padding: 5px;
}

.internal-box {
    display: flex;
    justify-content: space-between;

}

#txtScan {
    width: 172px;


}

button {
    width: 160px;
    height: 30px;
    border: 1px solid #414141;
    border-radius: 4px;
    background-color: #209f00;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
}

button:hover {
    scale: 1.1;
    transition: ease-in-out 100ms;
}

button:active {
    scale: 0.99;
    transition: ease-in-out 100ms;
    opacity: 0.8;
}

.container-button {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1rem;

    .alert {
        color: #999709;
        font-size: 15px;
        font-weight: 500;
        position: absolute;
        top: 50px;
        left: 225px;
    }
}

.white {
    background-color: #9f9f9f;
}