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

*{
    margin: 0;
    padding: 0;
}

:root{
    /* ===== Colors ===== */
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    --primary-color: #695CFE;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #707070;

    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}

body {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    /*background-color: lightgray;*/
    background-image: linear-gradient(135deg, #77a1d3, #79cbca);
    height: 100vh;
}

/* Style the logo*/
.logo-container {
    margin-left: 15px;
    padding: 1%;
}

.logo-image {
    display: block;
    height: 48px;
}

  
/* ---------- Style the Login form ------------ */
.productContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.loginForm {
    width: 40%;
    margin: 0 auto;
    margin-top: 4%;
    background: white;
    padding: 2%;
    border-radius: 10px;
}

.formHeading{
    text-align: left;
    border-bottom: 1px solid gray;
    padding-bottom: 5px;
}

.loginForm input[type="radio"]{
  margin: 0 10px 0 10px;
}

.formItem {
    width: 52%;
    box-sizing: border-box;
    align-items: center;
    text-align: left;
}

.textBox {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.loginbtn {
    color: white;
    background: linear-gradient(to right,#00a2ed, blue);
    border: none;
    font-weight: 600;
    padding: 0.6em 1.8em;
    border-radius: 3em;
    cursor: pointer;
  }

/* Style forget password*/
.forgetpwd {
    margin-top: 2%;
}

.forgetpwd a {
    font-size: 0.9rem;
    text-decoration: none;
    color: blue;
}

/* Design for the mobile view */
@media only screen and (max-width: 750px) {
    .loginForm {
        width: 80%;
        margin-top: 0;
    }
    .formItem {
        width: 90%;
    }
}