div.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0;
}
.login-form {
    margin: auto;
    width: 35%;
    padding: 15px;
    background: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}
.form-title {
    font-weight: bold;
    font-size: 20px;
}
.login-form hr {
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-control {
    height: 40px;
}
.main-content {
    background: lightgray;
    padding-top: 93px;
}
a.forgot {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.register-text {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.register-text a {
    text-decoration:none;
}

#column-right ul {
    padding-left: 0;
    margin-bottom: 20px;
    list-style-type: none;
}
#column-right ul li:first-child a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
#column-right ul li a {
    border: 1px solid #ddd;
    color: #888;
    padding: 8px 12px;
}
#column-right ul li a {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
}
#column-right ul li a.active, #column-right ul li a.active:hover, #column-right ul li a:hover {
    color: #444;
    background: #eee;
    border: 1px solid #ddd;
    text-shadow: 0 1px 0 #fff;
}

@media screen and (max-width: 500px) {
    .main-content {
        padding-top: 100px;
    }
    .login-form-container {
        display:block !important;
    }

    .login-form {
        width: 95% !important;
    }
  }


  .servicesBX{  
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .service-card{
    width: 180px;
    height: 180px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
  }

  .service-card img{
    display: block;
    margin: auto;
  }

  .service-card .service-title{
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }