

h2 {
    font-size: 24px;
    font-weight: bold;
}

form input {
    border-radius: 5px;
    padding: 10px;
}

form .form-check-label {
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(112.41deg, #1aa5bb, #1aa5bb 54.9%, #79e299);
    border: none;
    padding: 10px;
}

.btn-light {
    border: 1px solid #ddd;
    padding: 10px;
}

.image-container {
    position: relative;
    text-align: center;
}

.overlay-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 90%;
    color: #fff;
    font-size: 16px;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 5px;
}

.gradient-text {
    font-weight: bold;
    background: linear-gradient(112.41deg, #1aa5bb, #1aa5bb 54.9%, #79e299);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: none;
}


@media (max-width: 767.98px) {
    .image-container {
        display: none;
    }
}

.auth-img{
    border-radius: 5%;
}

.gradient-character {

    font-weight: bold;
    background: linear-gradient(112.41deg, #1aa5bb, #1aa5bb 54.9%, #79e299);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: small;
    
}


.auth-card {
    background: #fff; /* Card background color */
    border: none; /* Removes default Bootstrap card border */
    padding: 40px; /* Adds padding around the card content */
    border-radius: 8px; /* Rounded corners */
    position: relative; /* Keeps position relative for box shadow */
    box-shadow: 0 4px 20px rgba(26, 165, 187, 0.5), 0 6px 20px rgba(121, 226, 153, 0.3); /* Box shadow with gradient-like effect */
}

/* Sub Navigation */
.subnav {
    overflow-x: auto;
    white-space: nowrap;
}

.subnav-link {
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.subnav-link.active {
    color: rgb(26, 165, 187);
}

/* Profile Card and Edit Form */
.profile-card, .edit-form-card {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: linear-gradient(112.41deg, #1aa5bb, #1aa5bb 54.9%, #79e299);
    padding: 5px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsive Design for Mobile */
@media (max-width: 767.98px) {
    .subnav {
        flex-direction: row;
        overflow-x: scroll;
        white-space: nowrap;
    }

    .subnav-link {
        display: inline-block;
        width: auto;
        text-align: center;
    }

    .edit-form-card {
        padding: 1rem;
    }
}

.btn-gradient-border {
    border: 1px solid !important; /* Set the border width */
    border-image-slice: 1 !important; /* Ensures the gradient is stretched over the entire border */
    border-image-source: linear-gradient(112.41deg, #1aa5bb, #1aa5bb 54.9%, #79e299) !important; /* Gradient for border */
    color: #1aa5bb !important; /* Set text color */
}

.btn-gradient-border:hover {
    
    color: red; /* White text color on hover */
}


.auth-div-full {
    height: 100vh; 
    display: flex;
    flex-direction: column;
  }
  
  .auth-div-full > * {
    flex-grow: 1;
    display: flex;
    align-items: stretch; 
  }
  
  .auth-div-full img {
    object-fit: cover;
    width: 100%; 
    height: 565px; 
  }