.capitalize_word{
  text-transform:capitalize;
}

.signup_height_30px{
	height: 30px;
}
.signin_space_two{
	display: flex;
	justify-content: space-between;
}
.signin_padding_margin_0px{
	margin: 0px;
	padding: 0px;
}
.signin_padding_left_right_50px{
	padding-left: 50px;
	padding-right: 50px;
}

.margin_padding_top_bottom_0px{
	margin-top: 0px!important;
	margin-bottom: 0px!important;
	padding-top: 0px!important;
	padding-bottom: 0px!important;
}
.footer_select{
	color: #8B8B8C;
	border: none; 
	outline: none; 
	scroll-behavior: 
	smooth; background: 
	none!important
}

.header_between{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bg_search_home{
	background-color: #2A3C81;
}
.border_btn_home{
	border: 2px solid #2A3C81;
}

.border_radius_left_25px{
	border-bottom-left-radius: 25px!important;
	border-top-left-radius: 25px!important;
}
.border_radius_right_25px{
	border-bottom-right-radius: 25px!important;
	border-top-right-radius: 25px!important;
}

.height_45px{
	height: 45px;
}
.hr_header{
	border: 1px solid #2A3C81; 
	box-shadow: 2px 2px 2px grey;
}

.background_color_white{
	background-color: white;
}
.background_color_basic{
	background-color: #f4f6f9;
}
.background_color_grey{
	background-color: #EEEEEF!important;
}

.color_grey{
	color: #8B8B8C;
}

@media only screen and (min-width: 768px) {
    .display_hidden_block{
        display: block;
    }
    .display_block_hidden{
        display: none;
    }
    .display_hidden_block_inline{
        display: inline;
    }
    .display_block_hidden_inline{
        display: none;
    }
    .signin_border{
		border: 4px solid #c4c4c4;
		padding: 40px;
		border-radius: 20px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 767px) {
    .display_hidden_block{
        display: none;
    }
    .display_block_hidden{
        display: block;
    }
    .signin_border{
		border: 4px solid #c4c4c4;
		padding: 40px;
		border-radius: 20px;
		margin-top: 20px;
	}
	.display_hidden_block_inline{
        display: none;
    }
    .display_block_hidden_inline{
        display: inline;
    }
}

/*floatin sosmed cs*/

  .floating-wrapper {
    position: fixed;
    bottom: 20px;
    right: 5px;
    z-index: 9999;
  }

  .floating-icon {
    width: 110px; /* hanya atur lebar, tinggi menyesuaikan */
    cursor: pointer;
    transition: transform 0.3s;
  }

  .floating-icon:hover {
    transform: scale(1.05);
  }

  .floating-socials {
    display: none;
    position: absolute;
    bottom: 120px;
    right: 10px;
    text-align: center;
  }

  .floating-socials a img {
    width: 35px;
    height: 35px;
    margin: 6px;
    opacity: 0.85;
    transition: 0.3s;
  }

  .floating-socials a img:hover {
    opacity: 1;
    transform: scale(1.2);
  }

  /* Tombol close */
  .floating-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    z-index: 10000;
  }

  .floating-close:hover {
    opacity: 1;
  }
  
  /* Tombol SHOW (<) muncul setelah close ditekan */
    .floating-show-btn {
      position: fixed;
      right: 5px;
      bottom: 20px;
      background: #2a3c81;
      color: white;
      border: none;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      cursor: pointer;
      z-index: 9998;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      transition: 0.2s;
      font-size: 16px;
      font-weight: bold;
    
      /* default: sembunyi */
      display: none;
      align-items: center;
      justify-content: center;
    }
    .floating-show-btn:hover {
      background: #1d2c6b;
      transform: scale(1.1);
    }
    
    .style_bg_blue_gradient {
      background: linear-gradient(to top, #2A3C81, #677abb); 
      color: white; 
      border-radius: 50px;
      padding: 2px 15px;
    }
    
    .style_bg_orange_gradient {
      background: linear-gradient(to top, #EF7F1C, #ffb26e); 
      color: white; 
      border-radius: 50px;
      padding: 2px 15px;
    }
    
    .join-box {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 25px;
        background: #fff;
    }
    .join-btn {
        width: 100%;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .join-description {
        font-size: 14px;
        margin-top: 10px;
    }