.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #52B44B;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #52B44B;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

  .google-btn {
    width: 100%;
    height: 62px;
    background-color: #4285f4;
    border-radius: 20px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}

.google-btn .google-icon-wrapper {
    position: absolute;
    margin-top: 1px;
    margin-left: 1px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background-color: #fff;
}

.google-btn .google-icon {
    position: absolute;
    margin-top: 15px;
    margin-left: 0px;
    width: 30px;
    height: 30px;
}

.google-btn .btn-text {
    float: center;
    margin: 11px 11px 0 0;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.2px;
    font-family: "Roboto";
}

.google-btn:hover {
    box-shadow: 0 0 6px #4285f4;
}

.google-btn:active {
    background: #1669F2;
}
input {
  width: 100%;
  height:50px;
  padding: 12px 14px;
  border-radius: 100px!important;
  border: 1px solid #ccc;
  outline: none;
  /* font-size: 1rem; */
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  border-color: #F29200!important;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}
.login-container{
    border-radius: 50px!important;
}
.ftco-section {
    min-height: 100vh;      /* full viewport height */
    display: flex;
    align-items: center;    /* vertical center */
    justify-content: center;/* horizontal center */
}
