@font-face {
  font-family: OCRABold;
  src: url(https://kokofrog.com/fonts/OCRABold.ttf);
}

body {
  background-color: #fee440;
  font-size: 12px;
}

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, button, input {
  font-family: 'SUSE', sans-serif;
  letter-spacing: 1.4px;
}

.background {
  display: flex;
  min-height: 100vh;
}

.container {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
  z-index: 999;
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 15px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.inner-body {
  display: flex;
  align-items: center;
  padding: 0 8px 8px 8px;
  flex-wrap: wrap;
}

.inner-body-item {
  flex: 1;
}

.inner-body-item.logo {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

.koko-logo {
    width: 90%;
}

.koko-title {
  font-family: OCRABold;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #39b54a;
  font-size: 20px;
  font-weight: 700;
}

.text {
    color: #ddd;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3em;
    text-align: justify;
    margin-bottom: 10px;
}

.koko-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #5CB338;
}

.contact {
  font-size: 10px;
  color: #888;
}

.title {
  font-size: 20px;
  color: #fee440;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #D3E671;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #89AC46;
}

.kokologo {
  margin-top: -10px;
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 20px;
  }
  
      .inner-body {
          padding-top: 8px;
        flex-wrap: wrap;
        flex-direction: row;
    }
  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}