/* ===== Google Font Import - Poformsins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #86cc70;
}
/* Header Styling */
.header {
    background-color: #ffffff; /* Set background color */
    padding: 10px 20px; /* Adjust padding as needed */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow if desired */
  }
  
  .logo img {
    height: 40px; /* Adjust height of the logo image */
    width: auto; /* Maintain aspect ratio */
  }
  
  .logo span {
    font-size: 1.2em; /* Adjust font size of the text */
    margin-left: 10px; /* Add spacing between the logo image and text */
    font-weight: bold; /* Optionally, set font weight */
    color: #333; /* Optionally, set text color */
  }
  

/* width */

::-webkit-scrollbar {
    width: 8px;
  }
  /* Track */
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  /* Handle */
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(60deg, #38c23a, #2bec55);
    border-radius: 10px;
  }
  
.container{
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}

.container .form{
    padding: 30px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.container .signup{
    opacity: 0;
    transition: opacity 0.09s ease;
}

.container .form .title{
    position: relative;
    font-size: 27px;
    font-weight: 600;
}
.form .title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #38c23a;
    border-radius: 25px;
}
.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}
.input-field input,select{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}
.input-field input:is(:focus, :valid){
    border-bottom-color: #38c23a;
}
.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}
.input-field input:is(:focus, :valid) ~ i{
    color: #38c23a;
}
.input-field i.icon{
    left: 0;
}
.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}
.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}
.checkbox-content input{
    margin-right: 10px;
    accent-color: #38c23a;
}
.form .text{
    color: #333;
    font-size: 14px;
}
.form a.text{
    color: #38c23a;
    text-decoration: none;
}
.form a:hover{
    text-decoration: underline;
}
.form .button{
    margin-top: 35px;
}
.form .button input{
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #38c23a;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button input:hover{
    background-color: #38c23a;
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}