 :root {
  --st_color: #E7792B;
  --st_dark: #c56a2a;
  --st_white: #f5f5f5;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    background-color: #f5f5f5;
}

.section {
    background-color: #f5f5f5;
    width: 100%;
    color: black;
    display: flex;
    justify-content: center;
}

.section_inner {
    max-width: 1200px;
}

.section_shared {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
}

#about, #terms {
    width: 70%;
}

.section_shared h2{
    padding-left: 0px;
}

.section_inner h2 {
    padding: 40px;
    padding-bottom: 5px;
}

.section_inner p {
    margin: 50px;
    padding-top: 0px;
/*    max-width: 85%;
    min-width: 50%;*/
}

h2, h3 {
    max-width: 1200px;
    padding: 20px;
}

.dark-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--st_color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dark-button:hover {
    background-color: var(--st_dark);
}

.light-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--st_white);
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.light-button:hover {
    background-color: #f0f0f0;
}

.container {
    display: flex;
    justify-content: center;
}

#username, #password, #email, #subCode{
    height: 30px;
    width: 300px;
    margin-bottom: 10px;
}

.img_div{
    padding: 20px;
}

.img_div img{
    border-radius: 4px;
}

@media only screen and (max-width: 820px) {
    .section_shared {
        margin-top: 0px;
    }
    .img_div{
        padding: 0px;
        margin-top: -80px;
    }
    .section_shared {
        display: block;
        padding: 40px;
    }
    #about, #terms {
        width: 100%;
    }
}

#div_compact{
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 50px;
    margin-right: 50px;
}

.img_container {
  position: relative;
  text-align: center;
  color: white;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background-color:rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 7px;
  cursor: pointer;
  transition: 0.5s;
}

.bottom-right a{
  color: white;
  text-decoration: none;
}

.bottom-right:hover{
    background-color:rgba(0, 0, 0, 0.9);
}

h1, h2, h3, h4, h5, h6{
}