
.account-confirmation,
.loginPage,
.registerationPage,
.forgotPassword,
.passwordReset {
    min-height: 100vh;
}

/* .loginPage::before {
    content: "";
    position: absolute;
    top: var(--navheight);
    width: 100vw;
    min-height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?q=80&w=2952&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    background-size:cover;  
    background-position:center;
    z-index: 0.5;
  } 

  .registerationPage::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?q=80&w=2952&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    background-size:cover;  
    background-position:center;
  } */

.account-confirmation::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?q=80&w=2952&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    background-size:cover;  
    background-position:center;
  }

  .forgotPassword::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?q=80&w=2952&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    background-size:cover;  
    background-position:center;
    opacity: 0.2;
  }

  .passwordReset::before {
    content: "";
    position: absolute;
    top: var(--navheight);
    width: 100vw;
    min-height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?q=80&w=2952&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    background-size:cover;  
    background-position:center;
    opacity: 0.2;
  } 

.login_wrapper {
    display: block;
    position: relative;
    box-shadow: var(--boxshadowwithopacity);
    border-radius: 5px;
    max-width: 700px;
    margin: var(--navheight) auto auto auto;    
    z-index: 10;
}

h1, h2 {
    text-align: center;
}

.login_wrapper .sub_login_wrapper {
    padding: 2rem 1rem 2rem 1rem;
}

.login_wrapper_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 1rem;
}

 .facebook, 
 .google {
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin: auto;
}

.facebook {
    background-color: cornflowerblue;
    max-width: 100px;
    border-radius: 50%;
}

.google {
    background-color: crimson;
    max-width: 100px;
    border-radius: 50%;
}

.facebook a, .google a {
    align-self: center;
    color: white;
    font:500 clamp(1rem, 2vw, 2rem) 'Roboto';
    text-transform: uppercase;
}

.login-error p {
    color: red;
}

.login-success p {
    color: green;
}

.loginForm {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.loginForm .email {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

/* .fa-envelope,
.fa-lock,
.fa-unlock, .fa-user, .fa-id-card, 
.fa-home, .fa-battery-full, .fa-edit, 
.fa-trash, .fa-user-circle { */
.fa {
    color: var(--textColor);
    font:500 1.5rem 'Roboto';
}


input[type="file"], input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    margin-bottom: 2rem;
    height: 2rem;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--background);
    color: var(--textColor);
}

input[type="file"] { 
    margin-top: 1rem;
}

.loginForm .password {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.showPass {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

input[type="checkbox"] {
    margin-right: 1rem;
}

.showPass a, label {
    color: var(--textColor);
}

.g-recaptcha {
    margin-top: 2rem;
}

.login-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 7px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font: 500 clamp(14px, 1vw, 18px) 'Roboto'; 
    margin: 2rem 0 2rem 0;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .login-btn:hover {
    background-color: #3e8e41; 
  }

  /* sign up */

  #registerForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  #registerForm .signUpElements1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
  }

   #registerForm .signUpElements2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
  }

  /* profile */
  
  .profileDetail{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .profileimg{
    align-self: center;
    border-radius: 50%;
  }

  .profileBtns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .profileBtns form button {
    background-color: transparent;
    border: none;
  }

  .profileIconandInput  {
    display: block;
  }

@media screen and (max-width: 768px) {

    .login_wrapper .sub_login_wrapper {
        padding: 2rem 1rem 2rem 1rem;
    }

    .facebook, .google {
        width: 100%;        
    }

    .showPass {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
    }

    .showPass a {
        margin-top: 1rem;
    }

   /* profile */

   .profileDetail {
    grid-template-columns: 1fr;
    gap: 0;
    }

      .profileBtns{
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
      }

        /* sign up */

    #registerForm {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #registerForm .signUpElements1,
    #registerForm .signUpElements2 {
        width: 100%;
        
    }

}

@media screen and (max-width: 480px) {

    .login_wrapper {
        padding-top: 0;
    }
    
    .login_wrapper .sub_login_wrapper {
        padding: 1rem;
    }

    .facebook, .google {
        width: 100%;
    }
  
    .facebook a, .google a {
        position: relative;
        font:500 1.3rem 'Roboto';
    }

    .fa-envelope,
    .fa-lock,
    .fa-unlock, .fa-user, .fa-id-card, 
    .fa-home, .fa-battery-full, 
    .fa-edit, .fa-trash, .fa-user-circle {
        font:500 1.2rem 'Roboto';
        }

    .login-btn {
        font: 500 1.2rem 'Roboto'; 
      }
    
}
