@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
}

:root {
  --primary-color: #0b6fc0;
  --secondary-color: #000;
  --white-color: #fff;
  --heading-color: #0c74c2;
  --trust-color: #40a737;
  --btn-gradient: linear-gradient(93.22deg, #0b6fc0 1.06%, #1fd2e5 97.02%);
}

.main-container {
  width: 100%;
  padding: 5% 0;
  background: url("../assets/images/login\ bg.svg") center no-repeat;
  background-size: cover;
}

.plan-card {
  padding: 30px 30px;
  border-radius: 20px;
  width: 100%;
    overflow: hidden !important;
  font-family: "Outfit", sans-serif !important;
}

.free-plan {
  background: white;
}

.plan-info .plan-type h4 {
  font-weight: 600;
  font-size: 1.8rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
}
.price h2 {
  font-size: 2.7rem;
}

.plan-card .time h6 {
  font-weight: 400 !important;
  font-size: 18px;
  color: #797878;
  margin-bottom: 20px !important;
}

.plan-card .line {
  height: 1px;
  width: 100%;
  background: #e7ebff;
}

.plan-included {
  padding: 3px 0;
  margin-top: 5px;
}

.plan-included h6 {
  color: #1b223c;
  font-size: 18px;
}

.monitor-included li{
    font-size: 18px;
}

.select-plan-btn button{
    width: 100%;
    padding: 10px;
    border: 2px solid #1b223c;
    background: transparent;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
}

.heading h3{
    color: #0C74C2;
    font-weight: 600;
}

.paid-plan{
    background: url('../assets/images/Business.png');
    background-size: 150%;
    background-position: center;
  border-radius: 20px !important;
}
.paid-plan .price .time h6{
    color: white;
}