.register-container .title {
    text-align: center;
    margin-bottom: 50px;
}

.register-container .title h3 {
    font-weight: 700;
    font-size: 45px;
    line-height: 67.2px;
    margin: 0;
    color: #007AC1;
    text-align: center;
}

.register-container .title h3 span {
    font-weight: 700;
    color: #4D4D4D;
}

.register-container .title h3 .color-blue {
    color: #a44f30;
    line-height: 0;
    position: relative;
}

.register-container .title h3 .underline-text::after {
    content: url('/front-end/images/Vector_7.png');
    display: block;
    position: absolute;
    left: 0;
    top: 48px;
}

.btn-google {
    display: block;
    width: 100%;
    border: 1px solid #91C9FF;
    background: #ffffff;
    color: #4d4d4d;
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    transition: background-color 0.3s, box-shadow 0.3s;
    padding-left: 58px;
}
.btn-github {
    display: block;
    width: 100%;
    color: #4d4d4d;
    padding: 12px 16px 12px 42px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #91C9FF;;
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 12px;
    background-image: url('../images/github_logo.png');
    background-size: 24px 24px; /* Adjust size of the logo */
    transition: background-color 0.3s, box-shadow 0.3s;
}
.btn-linkedin {
    display: block;
    width: 100%;
    color: #4d4d4d;
    padding: 12px 16px 12px 42px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #91C9FF;
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 12px;
    background-image: url('../images/linkedin_logo.png');
    background-size: 24px 24px;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.google-icon {
    background-image: url('../images/google_logo.png');
}

.github-icon {
    background-image: url('../images/github_logo.png');
}

.linkedin-icon {
    background-image: url('../images/linkedin_logo.png');
}

.social-icon {
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 110px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #91C9FF;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 20px;
    left: 11px;
}

.social-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


.google .blue_common_btn svg {
    left: -3px !important;
}

.btn-google:hover {
     transition: 0.5s;
}
.btn-github:hover {
    transition: 0.5s;
}
.btn-linkedin:hover {
    transition: 0.5s;
}
.left_border {
    margin-top: -21px;
    border-bottom: 1px solid rgb(231, 231, 232);
    flex: 1 1 0%;
  }
  
  .left_border {
    border-bottom: 1px solid rgb(231, 231, 232);
    flex: 1 1 0%;
  }
  
  .left_border > :last-child {
    margin-right: 0px;
  }
  
  .or_border span {
    color: #757575;
    font-size: 14px;
    background: #fff; 
    padding: 0 10px;
    margin-bottom: -6px;
  }
  

.bottom-border{
    border-bottom: 1px solid #ccc;
  }
.register-container .a_color{
    color: #a44f30;
}

.form-check-input {
    appearance: none; /* Remove default checkbox style */
    width: 16px;
    height: 16px;
    top: 15px;
    padding: 8px;
    border: 2px solid #007AC1;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.form-check-input:checked {
    background-color: #007AC1 !important;
    border-color: #007AC1;
    position: relative;
}

/* Add a checkmark */
.form-check-input:checked::after {
    content: "✔"; 
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Focus & Hover */
.form-check-input:focus, 
.form-check-input:hover {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 122, 193, 0.5);
}
.font-13{
    font-size: 13px;
}