@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');

* {
  font-family: 'Sawarabi Gothic', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --blue : #4081eb;
  --yellow : #f3b605;
  --green : #32a351;
  --red :#e34134;
  --logo : #3766d0;
  --logo2 : #4384f0;
  --logo3 : #4487f2;
  --gray :#f5f5f5 ;
  --white : #ffffff;
  --black : #000000;
}

:root{
  --big-font-size : 1.9rem;
  --normal-font-size : 0.938rem;
  --smaller-font-size : 0.875rem;
  --mobile-big-font-size : 1.5rem;
}

h1 {
  margin: 0;
}

a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

html, body{
  height: 100vh;
  overflow: hidden;
}
.container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.row {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}
.col {
  width: 50%;
}
.shapeleft{
  background-color: var(--white);
  justify-content: flex-start;
  display: flex;
  align-items: center;
  text-align: center;

}
.form_heading {
  position: relative;
  top: 0;
  font-size: var(--big-font-size);
  margin: 6rem;
  transform: scale(0);
  transition: 1s ease-in-out;
}
.shaperight{
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 10;
  transition: .5s ease-in-out;
  flex-direction: column;
}
.align-items-center{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.form_wrapper {
  width: 100%;
  max-width: 28rem;
}

.form {
  width: 100%;
  max-width: 30rem;
  border-radius: .5rem;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transform: scale(0);
  transition: 1s ease-in-out;
  transition-delay: .2s;
}

.form input {
  font-size: var(--normal-font-size);
  width: 100%;
  padding: .5rem 1rem;
  outline: none;
  margin: .5rem 0;
  background-color: var(--gray) ;
  border: 0.125rem solid var(--white);
}
.form input:focus {
  border: 0.125rem solid var(--gray);
}

.form button {
  cursor: pointer;
  width: 100%;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  outline: none;
}
.flex-col {
  flex-direction: column;
}

.extra{
  color: var(--white);
  width: 100%;
  max-width: 30rem;
  margin: 2rem;
  padding: 1rem;
  border-radius: .5rem;
  background-color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transform: scale(0);
  transition: 1s ease-in-out;
  transition-delay: .4s;
}

.extra>i {
  font-size: 1.5rem;
  padding: 0 1rem;
  /* transition: .4s ease-in-out; */
}
.extra:hover {
  background-color: var(--red);
  color: var(--white);
}


.container.upload_page .form.upload_page ,
.container.upload_page .extra.upload_page,
.container.upload_page .form_heading.upload_page {
  transform: scale(1);
}

.text {
  margin: 4rem;
  color: var(--white);
}

.text h2 {
  font-size: var(--big-font-size);
  font-weight: 800;
  margin: 2rem 0;
  transition: .8s ease-in-out;
}
.text p {
  font-size: var(--normal-font-size);
  font-weight: 600;
  transition-delay: .5s;
  transition: .8s ease-in-out;
}

.background_img img{
  width: 35vw;
  transition-delay: 1s;
  transition: .8s ease-in-out;
}

.text h2,
.text p,
.background_img img{
  transition: .8s ease-in-out;
}



.text.upload_page h2 ,
.text.upload_page p ,
.background_img.upload_page img {
  transform: translateX(350%);
}

.container.upload_page  .text.upload_page h2 ,
.container.upload_page  .text.upload_page p ,
.container.upload_page  .background_img.upload_page img {
  transform: translateX(0);
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300vw;
  transform: translate(-35%, 0);
  background-image: linear-gradient(90deg, var(--logo3) 0%, var(--logo2)25%, var(--logo)100%);
  transition: 1s ease-in-out;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border-top-right-radius: max(50vw, 50vh);
  border-bottom-left-radius: max(50vw, 50vh);
}
.container.upload_page::before {
  transform: translate(0,0);
  left: 50%;
}

.form button:hover,
.form button:active {
  background-color: var(--red);
  border-color: var(--red);
}
.form-group{
  padding: 10px 0px;
}

/* RESPONSIVE */

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /* CSS */
  
}
@media (min-width: 768px) and (max-width: 1024px) {
  
  .container::before,
  .container.upload_page::before{
    height: 100vh;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 0;
    transform: none;
    left: 0;
   
  }
  .container::before{
    background-image: none;
  }
  .shapeleft h2 {
    margin: 0;
    font-size: var(--big-font-size);
  }

  .shaperight{
    position: relative;
  }

  .container.upload_page .col.upload_page{
    transform: translateY(0);
  }
  .col {
    width: 100%;
    position: relative;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    transform: translateY(100%);
    transition: .5s ease-in-out;
    padding: 5%;
  }
  .row {
    align-items: flex-end;
    justify-self: flex-end;
    FLEX-DIRECTION: COLUMN-REVERSE;
    justify-content: space-evenly;
  }

  .form,
  .extra{
    box-shadow: none;
  }
  .extra{
    margin: .5rem;
    padding: .5rem;
  }
  .text {
    margin: 0;
  }
  .text p{
    display: none;
  }
  .text h2{
    color: var(--blue);
    margin: 0;
    font-size: var(--big-font-size);
    padding: 1rem;
  }
  .background_img img{
    width: 45vw;
  }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  .container::before,
  .container.upload_page::before{
    height: 100vh;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 0;
    transform: none;
    left: 0;
   
  }
  .container::before{
    background-image: none;
  }
  .shapeleft h2 {
    margin: 0;
    font-size: var(--smaller-font-size);
  }

  .shaperight{
    position: relative;
  }

  .container.upload_page .col.upload_page{
    transform: translateY(0);
  }
  .col {
    width: 50%;
    position: relative;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    transform: translateY(100%);
    transition: .5s ease-in-out;
    padding: 5%;
  }
  .row {
    align-items: flex-end;
    justify-self: flex-end;
    FLEX-DIRECTION: COLUMN-REVERSE;
    justify-content: space-evenly;
  }

  .form,
  .extra{
    box-shadow: none;
  }
  .extra{
    margin: .5rem;
    padding: .5rem;
  }
  .text {
    margin: 0;
  }
  .text p{
    display: none;
  }
  .text h2{
    color: var(--blue);
    margin: 0;
    font-size: var(--smaller-font-size);
    padding: 1rem;
  }
  .background_img img{
    width: 45vw;
  }
  
}

@media (min-width: 481px) and (max-width: 767px) {

	.container::before,
  .container.upload_page::before{
    height: 100vh;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 0;
    transform: none;
    left: 0;
   
  }
  .container::before{
    background-image: none;
  }
  .shapeleft h2 {
    margin: 0;
    font-size: var(--mobile-big-font-size);
  }

  .shaperight{
    position: relative;
  }

  .container.upload_page .col.upload_page{
    transform: translateY(0);
  }
  .col {
    width: 100%;
    position: relative;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    transform: translateY(100%);
    transition: .5s ease-in-out;
    padding: 5%;
  }
  .row {
    align-items: flex-end;
    justify-self: flex-end;
    FLEX-DIRECTION: COLUMN-REVERSE;
    justify-content: space-evenly;
  }

  .form,
  .extra{
    box-shadow: none;
  }
  .extra{
    margin: .5rem;
    padding: .5rem;
  }
  .text {
    margin: 0;
  }
  .text p{
    display: none;
  }
  .text h2{
    color: var(--blue);
    margin: 0;
    font-size: var(--mobile-big-font-size);
    padding: 1rem;
  }
  .background_img img{
    width: 45vw;
  }

}

@media (max-width: 480px)  {
  .container::before,
  .container.upload_page::before{
    height: 100vh;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 0;
    transform: none;
    left: 0;
   
  }
  .container::before{
    background-image: none;
  }
  .shapeleft h2 {
    margin: 0;
    font-size: var(--mobile-big-font-size);
  }

  .shaperight{
    position: relative;
  }

  .container.upload_page .col.upload_page{
    transform: translateY(0);
  }
  .col {
    width: 100%;
    position: relative;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    transform: translateY(100%);
    transition: .5s ease-in-out;
    padding: 5%;
  }
  .row {
    align-items: flex-end;
    justify-self: flex-end;
    FLEX-DIRECTION: COLUMN-REVERSE;
    justify-content: space-evenly;
  }

  .form,
  .extra{
    box-shadow: none;
  }
  .extra{
    margin: .5rem;
    padding: .5rem;
  }
  .text {
    margin: 0;
  }
  .text p{
    display: none;
  }
  .text h2{
    color: var(--blue);
    margin: 0;
    font-size: var(--mobile-big-font-size);
    padding: 1rem;
  }
  .background_img img{
    width: 45vw;
  }


}