*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: corbel;
  }
  body{
    background: #dfe9f5;
  }
  
  .wrapper{
    width: 380px;
    padding: 2rem 0 1rem 0;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  }
  h1{
    font-size: 2rem;
    color: #07001f;
  }
  p{
    margin-bottom: 1.7rem;
  }
  form input{
    width: 85%;
    outline: none;
    border: none;
    background: #dfe9f5;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .recover{
    text-align: right;
    font-size: 0.8rem;
    margin: 0.2rem 1.7rem 0 0;
  }
  .recover a{
    text-decoration: none;
    color: #07001f;
  }
  button{
    font-size: 1.1rem;
    margin-top: 1rem;
    padding: 8px 0;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 85%;
    background: #ffa500;
    color: black;
    cursor: pointer;
  }
  button:hover{
    background: black;
    color: #faa500;
  }
  .or{
    font-size: 0.8rem;
    margin-top: 1.5rem;
  }
  
  
  .not-member{
    font-size: 0.8rem;
    margin-top: 1.4rem;
  }
  .not-member a{
    color: #faa500;
    text-decoration: none;
  }
  a:hover{
    text-decoration: underline;
  }
  
  input[type="text"], input[type="password"] {
    /* Your existing styles */
  }
  
  /* Additional styles for icons */
  input[type="text"] ~ .fa-envelope,
  input[type="password"] ~ .fa-lock {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #555;
  }
  
  .recover a .fa-key {
    margin-right: 5px;
  }
  
  button .fa-sign-in-alt {
    margin-right: 5px;
  }
  
  .not-member a .fa-user-plus {
    margin-left: 5px;
  }
  
  .oauth-login {
    text-align: center;
    margin-top: 20px;
  }
  
  .oauth-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #4285F4;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
  }
  
  .oauth-btn:hover {
    background-color: #357ae8;
  }
  