@import url('https://rsms.me/inter/inter-ui.css');
::selection {
  background: #2D2F36;
}

::-webkit-selection {
  background: #2D2F36;
}

::-moz-selection {
  background: #2D2F36;
}

html {
  height: 100%;
}

body {
  background: white;
  font-family: 'Inter UI', sans-serif;
  height: 100%;
  padding: 0;
  margin: 0;
}

h5 {
  color: #0071BC;
}

.page {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

@media (max-width: 915px) {
  .page {
    height: auto;
  }
}

.container {
  display: flex;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 915px) {
  .container {
    flex-direction: column;
    height: 630px;
  }
}

.left {
  display: flex;
  background: #008DD2;
  color: #04893a;
  position: relative;
  width: 50%;
  height: 100vh;
}

.left-inside {
  background: #008DD2;
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
  color: #04893a;
  width: 60%;
  height: 70%;
  margin-top: 120px;
  margin-left: 40%;
}

@media (max-width: 915px) {
  .left {
    display: none;
  }
  .left-inside {
    display: none;
  }
}

.title {
  font-size: 35px;
  font-weight: 900;
  margin: 50px 40px 40px;
  color: #20809c;
}

.description {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  margin: 40px;
}

#SIGHMA {
  display: none;
  background: #008DD2;
  height: 100px;
  padding: 10px 0;
}

.right {
  display: flex;
  background: white;
  color: #04893a;
  position: relative;
  width: 50%;
  height: 100vh;
}

.right-inside {
  background: white;
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
  color: #04893a;
  width: 60%;
  height: 70%;
  margin-top: 120px;
}

@media (max-width: 915px) {
  #SIGHMA {
    display: block !important;
    background: #008DD2;
    height: 100px;
    padding: 10px 0;
  }
  .right {
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .right-inside {
    flex-shrink: 0;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.22);
    height: 100%;
    width: 100%;
    margin-top: 0px;
  }
}

svg {
  position: absolute;
  width: 320px;
}

path {
  fill: none;
  stroke: url(#linearGradient);;
  stroke-width: 4;
  stroke-dasharray: 240 1386;
}

.form {
  margin: 60px;
}

.form-row{
  color:  white;
  margin-top: 80px;
}

label {
  color: gray;
  display: block;
  font-size: 18px;
  height: 16px;
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: center;
}

input {
  background: white;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1;
  color: #008DD2;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}

input:focus {
  border-color: #008DD2;
}

input:active {
  border-color: #008DD2;
}

#Username {
  text-transform: uppercase;
}

#IniciarSesion {
  margin-top: 40px;
  transition: color 300ms;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: gray;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}

#IniciarSesion:hover {
  color: #008DD2;
}

#IniciarSesion:focus {
  color: #008DD2;
}

#IniciarSesion:active {
  color: #008DD2;
}

strong {
  color: white;
  font-weight: bolder;
  font-size: 14px;
}