:root {
    --sci-green: #71B73E;
    --sci-white: #FFFFFF;
    --sci-dark-grey: #292929;
    --sci-black: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

h2 {
    color: var(--sci-green);
}

ul {
    list-style-type: "";
}

.container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 100vh;
}


.navbar {
    grid-row: 1/2;
    background-color: var(--sci-green);
    color: var(--sci-white);
    padding: 2rem;
    height: 100%;
}

.navbar .logo {
    fill: var(--sci-black);
}

.navbar a {
    color:white;
    text-decoration: none;
    font-size: 1.5rem;
}


.interface {
    grid-column: 2/7;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.interface .informação {
    grid-column: 1/2;
    padding: 2rem;
}

.interface .informação .Input {
    width: 100%;
}

.interface .informação .radio-table {
    display: flex;
    flex-wrap: wrap;
}

.interface .informação .radio-container{
    display: block;
    background: var(--primary-color);
    padding: 0.2rem 0.4rem;
    background-color: var(--sci-green);
    border: none;
    margin: 0.1rem;
    cursor: pointer;
    border-radius: 10px;
    color: var(--sci-white);
    
}

input[type="radio"] {
    position:fixed;
    opacity:0;
}

.interface .informação .radio-container:hover {
    background-color: var(--sci-dark-grey);
    color:var(--sci-green);
}

.interface .informação .btn {
    display: flex;
    width: 100%;
}

.interface .assinatura {
    grid-column: 2/3;
    padding: 2rem;
}

.interface .assinatura .code .html {
    font-size: 10px;
    padding: 1em;
    border-radius: 10px;
    background-color: var(--sci-dark-grey);
    color: var(--sci-white);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}