@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&display=swap');
:root {
  --color-blue: #41ABE1;
  --color-dark-blue: #1C2F5B;
  --color-grey: #8F8F8F;
  --color-white: #fff;
  --color-black: #221F20;
  --font: "Gilroy";
}


body {
  background: var(--color-white);
  font-size: 18px;
  color: var(--text-grey);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "Poppins", sans-serif;
}

::selection {
  background: #666;
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-grey-1);
}

::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: 15px;
}

a {
  text-decoration: none;
  color: #41ABE1;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.1;
}

figure {
  margin: 0;
}

p {
  margin-bottom: 10px;
}

iframe {
  display: block;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  overflow-x: clip;
}

.form-control {
  border: solid 1px #ddd;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 15px;
  background: var(--color-white);
  color: var(--color-black);
}

textarea {
  height: 85px;
  resize: none;
}

.img-cover {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.font-12 {
  font-size: 12px;
}
.font-13 {
  font-size: 13px;
}
.font-14 {
  font-size: 14px;
}
.font-15 {
  font-size: 15px;
}
.font-16 {
  font-size: 16px;
}
.font-17 {
  font-size: 17px;
}
.font-18 {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .font-18 {
    font-size: 18px;
  }
}
.font-20 {
  font-size: 18px;
}
@media (min-width: 1366px) {
  .font-20 {
    font-size: 20px;
  }
}
.font-22 {
  font-size: 20px;
}
@media (min-width: 1366px) {
  .font-22 {
    font-size: 22px;
  }
}
.font-50 {
  font-size: 32px;
}
@media (min-width: 576px) {
  .font-50 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .font-50 {
    font-size: 42px;
  }
}
@media (min-width: 1366px) {
  .font-50 {
    font-size: 50px;
  }
}
.font-70 {
  font-size: 40px;
}
@media (min-width: 768px) {
  .font-70 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .font-70 {
    font-size: 55px;
  }
}
@media (min-width: 1200px) {
  .font-70 {
    font-size: 62px;
  }
}
@media (min-width: 1366px) {
  .font-70 {
    font-size: 70px;
  }
}

.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}

.gap-1x {
  gap: 1px;
}
.gap-2x {
  gap: 2px;
}
.gap-3x {
  gap: 3px;
}
.gap-4x {
  gap: 4px;
}
.gap-5x {
  gap: 5px;
}

.text-black {
  color: var(--color-black) !important;
}
.text-red {
  color: var(--color-red) !important;
}
.text-white {
  color: var(--color-white) !important;
}

.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}
.default-padding {
  padding-block: 60px;
}
@media (min-width: 992px) {
  .default-padding {
    padding-block: 90px;
  }
}
@media (min-width: 1366px) {
  .default-padding {
    padding-block: 110px;
  }
}

.default-margin {
  margin-block: 50px 60px;
}
@media (min-width: 992px) {
  .default-margin {
    margin-block: 90px;
  }
}
@media (min-width: 1366px) {
  .default-margin {
    margin-block: 110px;
  }
}

.vertical {
  display: flex;
  flex-direction: column;
}

.y-center {
  display: flex;
  align-items: center;
}

.down-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8a8a8d;
  transition: border-color 0.3s ease;
}

.flip-x {
  transform: scaleX(-100%);
}

.ul-primary {
  gap: 15px;
}
.ul-primary li {
  display: flex;
  gap: 11px;
}
.ul-primary li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--color-red);
  margin-top: 7px;
}

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 10px 35px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 0;
  font-size: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--color-black);
}
.btn-primary.bg-white {
  background: var(--color-white);
  color: var(--color-black);
  border: solid 1px #cecece;
}
.btn-primary.bg-white:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}
.btn-text {
  font-weight: 400;
  color: var(--color-black);
  font-size: 14px;
  transition: color 0.3s ease;
}
.btn-text:hover {
  color: var(--color-red);
}
.btn-text:hover .down-arrow {
  border-top-color: var(--color-red);
}

.bg-text {
  color: #eee;
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  line-height: 1;
}

.border-shape {
  width: 555px;
  height: 555px;
  border: solid 20px #f4f4f4;
  position: relative;
}
.border-shape::after {
  content: "";
  width: 47px;
  height: 37px;
  background: #f4f4f4;
  outline: solid 28px var(--color-white);
  border-right: solid 10px #fff;
  position: absolute;
  top: 8px;
  right: 8px;
}
.border-shape .bg-text {
  left: calc(100% + 3px);
  top: -45px;
  z-index: 1;
  font-size: 60px;
}
@media (min-width: 992px) {
  .border-shape .bg-text {
    font-size: 75px;
  }
}
@media (min-width: 1366px) {
  .border-shape .bg-text {
    top: -75px;
    font-size: 100px;
  }
}

.shape-wrap {
  position: absolute;
  top: 0;
  z-index: -1;
}
.shape-wrap .shape {
  width: 60px;
  height: 85px;
  display: block;
}
.shape-wrap .shape:nth-child(1) {
  background: var(--color-red);
}
.shape-wrap .shape:nth-child(2), .shape-wrap .shape:nth-child(3) {
  width: 70px;
  background: var(--color-grey-1);
  position: absolute;
}
.shape-wrap .shape:nth-child(2) {
  top: 100%;
}
.shape-wrap .shape:nth-child(3) {
  bottom: 100%;
}
@media (min-width: 1200px) {
  .shape-wrap .shape {
    width: 80px;
    height: 110px;
  }
  .shape-wrap .shape:nth-child(2), .shape-wrap .shape:nth-child(3) {
    width: 100px;
  }
}
@media (min-width: 1366px) {
  .shape-wrap .shape {
    width: 140px;
    height: 180px;
  }
  .shape-wrap .shape:nth-child(2), .shape-wrap .shape:nth-child(3) {
    width: 190px;
  }
}
@media (max-width: 767px) {
  .shape-wrap .shape {
    width: 30px;
    height: 40px;
  }
  .shape-wrap .shape:nth-child(2), .shape-wrap .shape:nth-child(3) {
    width: 40px;
  }
}
.shape-wrap.left {
  left: 0;
}
.shape-wrap.left .shape:nth-child(2), .shape-wrap.left .shape:nth-child(3) {
  left: 100%;
}
.shape-wrap.left .shape:nth-child(2) {
  left: 100%;
}
.shape-wrap.right {
  right: 0;
}
.shape-wrap.right .shape:nth-child(2), .shape-wrap.right .shape:nth-child(3) {
  right: 100%;
}
.shape-wrap.right .shape:nth-child(2) {
  right: 100%;
}

.shape.red {
  background: var(--color-red);
}
.shape.white {
  background: var(--color-white);
}
.shape.grey {
  background: var(--color-grey-1);
}

.to-top {
  background: transparent;
  border: none;
  margin: 45px auto;
  display: flex;
  padding: 3px;
}
@media (min-width: 992px) {
  .to-top {
    margin-block: 70px;
  }
}
@media (max-width: 767px) {
  .to-top img {
    max-width: 50px;
  }
}

.loginwrap {
  margin: 0;
  padding: 0;
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  height: 100vh;
}
@media (max-width: 767px) {
  .loginwrap {
    display: block;
  }
}
.loginwrap-left {
  width: 50%;
  height: 100%;
  background: url(../images/loginImage.jpg);
  padding: 30px;
  position: fixed;
  background-size: cover;
  display: flex;
  align-items: end;
}
.loginwrap-left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767px) {
  .loginwrap-left {
    width: 100%;
    position: relative;
    height: 300px;
  }
}
.loginwrap-content {
  padding: 50px;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .loginwrap-content {
    padding: 0;
  }
}
.loginwrap-content h1 {
  color: var(--color-white);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
}
.loginwrap-right {
  width: 50%;
  height: 100%;
  margin-left: 50%;
  padding: 50px;
  display: flex;
}
@media (max-width: 767px) {
  .loginwrap-right {
    width: 100%;
    margin-left: 0;
    display: block;
    height: auto;
  }
}
.loginwrap-right .loginContent {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.loginwrap-right .headerLogo {
  margin: 0;
  padding: 0 0 30px;
  border-bottom: 1px solid #D2D2D2;
  margin-bottom: 50px;
}
.loginwrap-right h2 {
  color: var(--color-black);
}
.loginwrap-right p {
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .loginwrap-right p {
    text-align: left !important;
    margin-top: 25px;
  }
}

.formcontrol {
  margin: 5px 0;
  padding: 12px 15px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
}
.formcontrol.inputfiled {
  outline: 1px solid #D2D2D2;
  border-radius: 4px;
  border: 0;
}
.formcontrol:focus {
  outline: 2px solid var(--color-blue);
  border: 0px solid var(--color-grey);
}

label {
  font-size: 10px;
  font-weight: 600;
  background: #fff;
  width: fit-content;
  padding: 3px 6px;
  text-transform: uppercase;
  position: relative;
  top: 15px;
  left: 15px;
}

input::-ms-input-placeholder { /* Edge 12-18 */
  text-transform: uppercase;
  font-size: 12px;
}

input::placeholder {
  text-transform: uppercase;
  font-size: 12px;
}

.forgot-pass {
  font-size: 14px;
  font-weight: 400;
}

.footerbottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .footerbottom {
    position: relative;
    bottom: 0;
  }
  .d-inherit{
    display: inherit;
  }
}

.toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -35px;
  position: relative;
}

.church-name{
  margin: auto;
  padding: 13px 30px;
  background: #ffffff;
  border-radius: 0;
  border: 1px solid #bbb6b6;
  /* box-shadow: 1px 6px 0 0px #ebebeb; */
  text-align: center;
  border-radius: 10px;
}

.church-name h3{
  color: #293F73;
  font-weight: 400;

}

.churchImage img{
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
}

.deletionAcc{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
