/* GENERAL */
*
{
  color: #000;
  box-sizing: border-box;

  font-family: condor,sans-serif;
  font-weight: 300;
  font-style: normal;
}

html, body {
    background-color: #FFF;
    margin: 0;
}

button
{
  cursor: pointer;
}

.fs-logo 
{
  opacity: 0;
  left:-1000px;
  position: absolute;
  
}

@media only screen and (min-width: 960px)
{

}

.login-anim 
{
  animation: logging-in-anim 1.5s 0s ease-in-out infinite;
  opacity: 1;
}

.login-page
{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.login-container
{
  width: 0%;
  animation: login-width 0.75s 0.25s ease-in-out forwards;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  overflow: hidden;

  background-color: #F79D65;
}

.login-container-inside
{
  width: 600px;
}

.login-container-inside h2
{
  font-family: condor,sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 32px;
  margin: 25px auto;
  opacity: 0;
  animation: fade-in 1s 1s ease-in-out forwards;
}

.login-container-inside input
{
  display: block;
  width: 400px;
  height: 50px;
  padding: 5px;
  margin: 5px auto;
  border: 1px solid #0F4C5C;
  border-radius: 5px;

  color: #0F4C5C;
  font-size: 18px;
}

.login-container-inside button
{
  width: 400px;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background-color: #0F4C5C;
  color: white;
  font-size: 20px;

  font-family: condor,sans-serif;
  font-weight: 300;
  font-style: italic;
}

.graphic-container
{
  width: 100%;
  background-color: #F79D65;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: none;
  animation: graphic-width 0.75s 0.25s ease-in-out forwards;
}

.graphic-container img
{
  width: 0px;
  display: none;
}

@media only screen and (min-width: 960px)
{
  .login-container
  {
    background-color: white;
  }

  .graphic-container
  {
    box-shadow: -8px 0px 16px 0 rgba(247,178,103,0.75);
  }

  .graphic-container img
  {
    width: 600px;
    display: block;
  }

  .fs-logo 
  {
    left: calc(40% - 64px);
    top: calc(50% - 64px);
    transform-origin: center center;
    transform: translate(-40%,-50%), rotate(0deg);

    animation: fade-in 1s 1s ease-in-out forwards;
  }
}

@keyframes login-width
{
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes graphic-width
{
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@media only screen and (min-width: 960px)
{
  @keyframes login-width
  {
    0% {
      width: 0%;
    }
    100% {
      width: 40%;
    }
  }

  @keyframes graphic-width
  {
    0% {
      width: 100%;
    }
    100% {
      width: 60%;
    }
  }
}

@keyframes fade-in
{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@keyframes logging-in-anim
{
  0% {

    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(370deg);
  }
  100% {
    transform: rotate(360deg);
  }
}