.sign-head, .sign-head a {
    color: rgba(22, 22, 23, .8);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
}

.sign-head a:hover {
    color: #06c;
}

.custom-link {
  color: #06c;
  text-decoration: none;
}

.custom-link:hover {
  text-decoration: underline;
}

.login-nav-bar {
	background-color: rgba(255, 255, 255, .8);
}

#login-btn:hover {
    background-color: rgba(22, 22, 23, .9) !important;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0; /* Adjust spacing as needed */
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc; /* Adjust the line style and color */
    margin: 0 10px; /* Adjust spacing around the text */
  }
  
  .divider span {
    font-size: 14px; /* Adjust text size */
    color: #555; /* Adjust text color */
  }

.apple-login-btn {
    width: 260px;
    height: 44px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.15s ease-in-out,
                box-shadow 0.15s ease-in-out,
                transform 0.05s ease-in-out;
    text-decoration: none;
}

.apple-login-btn:hover {
    background-color: #000;   /* ramane black */
    color: #fff;              /* ramane white */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.apple-login-btn:active {
    transform: scale(0.99);
}

.apple-icon {
    height: 18px;
    width: 18px;
}