@import url('https://fonts.googleapis.com/css?family=Poppins');

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

body {
    margin: 0;
}

header {
    position: fixed;
    display: none;
    width: calc(100% - 64px);
    height: auto;
    background-color: #272727;
    padding: 32px;
    color: #ffffff;
    transform: translateY(-314px);
    transition: 0.2s;
    opacity: 0;
    z-index: 99;
}

.heading-container {
    display: flex;
    align-items: center;
    height: 60px;
}

.heading-container svg {
    height: 40px;
    width: 40px;
    fill: #ffffff;
    padding-right: 20px;
}

.heading-container p {
    font-size: 40px;
    font-weight: bold;
}

.cross {
    position: relative;
    display: flex;
    float: right;
    bottom: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: #EF665B;
    fill: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.cross:hover {
    background-color: #f79590;
}

.cross svg {
    height: 20px;
    transition: 0.2s;
}

.cross:hover svg {
    height: 16px;
}
    
.codeform {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
}
    
.formDiv {
    position: relative;
    width: 100vw;
    padding-bottom: 16px;
}

.codeform h1 {
    text-align: center;
}

.codeform .input {
    height: 48px;
    width: 320px;
    font-size: 26px;
    text-transform: uppercase;
}

.codeform .submit {
    margin-top: 16px;
    height: 40px;
    width: 300px;
    font-size: 24px;
}

.pic {
    height: 320px;
    width: auto;
}

.picDiv {
    padding: 0 40px;
}

.picsDiv {
    border: 2px solid; 
    border-radius: 5px;
    padding-inline: 10px;
    background-color: #000000;
    display: flex;
    overflow-x: scroll;
    gap: 10px;
    padding: 10px;
    padding-bottom: 10px;
}

.picsDiv img {
    border: 1px solid #ffffff;
}

.pic {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.success {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #84D65A;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.success__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.success__icon path {
  fill: #393A37;
}

.success__title {
  font-weight: 500;
  font-size: 14px;
  color: #393A37;
  padding-left: 10px;
  padding-right: 10px;
}

.success__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.success__close path {
  fill: #393A37;
}

.error {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #EF665B;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.error__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.error__icon path {
  fill: #fff;
}

.error__title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}

.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.error__close path {
  fill: #fff;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100vw - 64px);
    height: auto;
    background: #cccccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    font-size: 12px;
    z-index: 99;
}