/* base */

@font-face {
  font-family: Gotham;
  src: url("/static/fonts/Gotham-Medium.otf");
}

@font-face {
  font-family: Gotham;
  src: url("/static/fonts/Gotham-Bold.otf");
  font-weight: bold;
}

body {
  margin: 0;
}

.main-content {
  min-width: 100%;
  min-height: 100vh;
}
.main-content .navbar {
  align-items: center;
  background-image: url("/static/imgs/navbar.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 6vh;
  justify-content: space-between;
  padding: 0 1vw;

}
.main-content .navbar .main-logo {
  background-image: url("/static/imgs/main-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 4vh;
  min-width: 40vh;
}
.main-content .navbar .left-logo {
  background-image: url("/static/imgs/left-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 3vh;
  width: 9vh;
}
.main-content .main-title {
  color: #6E438B;
  font-family: Gotham;
  font-weight: bold;
  font-size: 3vh;
  letter-spacing: 0px;
  margin: 4vh 4vw;
  margin-top: 2vh;
}

.main-content .container {
  margin: 1vh 4vw;
  padding: 1vh 4vw;
}
.main-content .container .title {
  color: #6E438B;
  font-family: Gotham;
  font-weight: bold;
  font-size: 2vh;
  letter-spacing: 0px;
  margin-bottom: 2vh;
}

.main-content .container .dj_map {
  max-width: 40vw;
}

.main-content .container .fields {
  display: flex;
  flex-wrap: wrap;
  min-width: 40vw;
  margin-bottom: 2vh;
}

.main-content .container .fields .field {
  align-items: center;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  font-family: Gotham;
  font-size: 1.3vh;
  margin: .4vh 1vw;
  padding: .7vh 1vw;
}
.main-content .container .fields.small .field {
  min-width: 15vh;
  height: fit-content;
}
.main-content .container .fields .field  label {
  font-weight: bold;
  letter-spacing: 0px;
  color: #707070;
  text-align: center;
  margin-bottom: 1vh;
}
.main-content .container .fields .field  input {
  border: 0;
  outline: none;
  width: 60%;
}
.main-content .container .fields .field select{
  border: 0;
  font-size: 1.3vh;
  background: none;
}

.main-content .container .fields .field option {
  font-size: 1.2vh;
}

.main-content .container .form-submit {
  background: #6E438B 0% 0% no-repeat padding-box;
  border-radius: 20px;
  border: 0;
  box-shadow: 0px 3px 6px #00000029;
  color: #fff;
  display: block;
  margin: 3vh auto;
  padding: 3vh 3vw;
  cursor: pointer;
}

.main-content .map-row {
  display: flex;
}

.main-content .fields .map {
  max-width: 55%;
  max-height: 60vh;
}

.main-content .fields .right-fields {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 43%;
  align-items: baseline;
  justify-content: flex-end;
}

.main-content .login-container {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 80vh;
}
.main-content .login-container .login-form {
  margin-bottom: 4vh;
}

.main-content .login-container .title {
  color: #6E438B;
  font-family: Gotham;
  font-weight: bold;
  font-size: 4vh;
  margin-bottom: 3vh;
  max-width: 35vh;
  line-height: 4vh;
}

.main-content .login-container .form-field {
  width: 25vw;
  margin-bottom: 1vh;
}

.main-content .login-container .form-field input{
  border: .5px solid #979797;
  border-radius: 4px;
  font-family: Gotham;
  font-weight: 400;
  line-height: 144%;
  min-width: 50%;
  width: 100%;
  outline-color: #6E438B;
  padding: .5vh 1vw;
}

.main-content .login-container .form-submit {
  background: #6E438B;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: Gotham;
  font-size: 2vh;
  font-weight: bold;
  margin: 4vh auto;
  padding: 1.5vh 2vw;
}

.main-content .historial-logs {
  margin: 2vh 5vw;
}

.main-content .historial-logs .log {
  align-items: end;
  padding: 2vh 1vw;
  border: 1px solid gray;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1vh;
}
.main-content .historial-logs .log .sent_at{
  flex-basis: 100%;
  font-size: 1.3vh;
  font-family: 'Gotham';
}
.main-content .historial-logs .log .request {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 80%;
  padding: 1vh 1vw;
}
.main-content .historial-logs .log .request .data {
  align-items: end;
  display: flex;
  font-family: Gotham;
  padding: .4vh .6vw;
}
.main-content .historial-logs .log .request .field {
  font-size: 1.4vh;
  font-weight: 400;
  margin-right: .5vw;
}
.main-content .historial-logs .log .request .value {
  font-size: 1.2vh;
}
.main-content .historial-logs .log .view {
  padding: 1vh 1vw;
  font-family: 'Gotham';
  font-size: 1.2vh;
}
.main-content .historial-logs .log .view a {
  padding: 1vh 1vw;
  background: #6E438B;
  border-radius: 4px;
  font-family: Gotham;
  font-size: 1.4vh;
  color: #fff;
  text-decoration: none;
}

.main-content .nav-link {
  padding: 1vh 4vw;
}
.main-content .nav-link a {
  font-family: Gotham;
  font-size: 1.5vh;
  text-decoration: none;
}

.main-content .error-message {
  font-size: 1.7vh;
  color: darkred;
}

.main-content .error-uuid {
  font-size: 1.3vh;
  margin-bottom: 1vh;
  padding: 0 1vw;
  color: #6E438B;
  text-decoration: none;
}
