:root{
    --primary-color: white;
    --secondary-color: rgb(8, 5, 31);
    --tertiary-color: rgba(28, 42, 66, 1);
    --scroll-bar-color: rgb(145, 145, 145);
    --red-color: rgb(166, 13, 13);
}

body {
    margin: 0;
    padding: 0;
    background-image: url("../images/back.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    overflow: hidden;
}

hr {
    width: 80%; 
    margin: 0 auto
}

.image-fluid {
    width: 70%;
}

.resize_image {
    width: 100%;
    padding: 5px;
}

h3{
    color: var(--secondary-color);
}

h6{
    color: var(--secondary-color);
    font-size: 40px !important;
}


.otp_image{
    width: 500px;
    padding: 5px;
}

.password-container {
    position: relative;
}

.field-icon {
    position: absolute;
    top: 50%;
    right: 10px; 
    transform: translateY(-50%);
    cursor: pointer;
}

.form-control {
    padding-right: 40px; 
   
}

.resize {
    font-size: 23px !important; 
    font-weight: normal !important;
  }

.card {
    width: 350px;  
    margin: 0 auto;
}

.text-center.my-3 {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: #002c5d;
    font-weight: bold;
}

.custom-text-size {
    font-size: 13px; 
}


.create_profile_scrollbar {
    max-height: 450px; 
    overflow-y: auto; 
    overflow-x: hidden; 
}


  .create_profile_scrollbar::-webkit-scrollbar {
    width: 5px;
  }
   
  .create_profile_scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--scroll-bar-color);
    border-radius: 3px;
  }

  .create_profile_scrollbar::-webkit-scrollbar-track {
    background-color: var(--primary-color);
  }
   
  .create_profile_scrollbar {
    scrollbar-width: solid 1px;
  }
   
  .create_profile_scrollbar::-moz-scrollbar {
    width: 5px;
  }
   
  .create_profile_scrollbar::-moz-scrollbar-thumb {
    background-color: var(--red-color);
    border-radius: 3px;
  }

 