* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #444;
  }
  
  .uppercase {
    text-transform: uppercase;
  }

  .container {
    position: relative;
    width: 30rem;
    height: 75vh;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
 
  .signin-signup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 5;
  }
  
  
  form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:  60%;
    min-width: 238px;
    padding: 0 10px;
  }
  
  form .sign-in-form {
    opacity: 1;
    /* transition: 0.5s ease-in-out;
    transition-delay: 1s; */
    transition: 0.5s ease-out;
    transition-delay: 0s;
  }
  
  form .sign-up-form {
    opacity: 0;
    /* transition: 0.5s ease-in-out;
    transition-delay: 1s; */
    transition: 0.5s ease-out;
    transition-delay: 0s;
  }
  
  .title {
    font-size: 35px;
    color: #ee0049;
    margin-bottom: 10px;
    border-bottom: 1rem solid;
    border-bottom-width: 2px;
    border-color: #ffc8c8;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
  }
  
  .form-select {
    border: 1.2px solid #007bff;
    border-radius: 50px;
    width: 100%;
  }
  
  .input-field {
    width: 100%;
    height: 44px;
    background: #f0f0f0;
    margin: 10px 0;
    padding: 0 15px;
    border: 1.2px solid #007bff;
    border-radius: 50px;
    display: flex;
    column-gap : 15px;
    align-items: center;
  }
  
  .input-field i {
    flex: 1;
    color: #666;
    text-align: center;
    font-size: 18px;
  }
  
  .input-field input {
    flex: 5;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #444;
  }
  
  
  .btn {
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: #1A1A37;
    color: #fff;
    font-weight: 600;
    margin: 10px 0;
    text-transform: uppercase;
  }
  
  .btn:hover {
    background: #003399;
    /* border: 2px black solid; */
    cursor: pointer;
  }
  
  .social-text {
    margin: 10px 0;
    font-size: 16px;
  }
  
  .social-media {
    display: flex;
    justify-content: center;
  }
  
  .social-icon {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    border: 1px solid #444;
    border-radius: 50px;
    margin: 0 5px;
  }
  
  .sign-in-form p {
    margin: 10px 0;
    font-size: 16px;
  }
  a {
    text-decoration: none;
  }
  
  .social-icon:hover {
    color: #003399;
    border-color: #003399;
  }

  .canvas {
    z-index: -6;
    position: absolute;
    width: 100%;
    height: 100vh;
  }
  
  /************* RESPONSIVE *************/

@media (max-width:779px) {
    .container {
      width: 100vw;
      height: 100vh;
    }
  }