body {
    background-color: #17726d;
}

.bg-primary {
    background: linear-gradient(to bottom, #17726d 50%, #ffff 50%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-white {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 900px;
    width: 100%;
}

form input:valid {
    border-color: #17726d;  /* Change border color when data is entered */
    background-color: #d7ecea;  /* Change background color */
}

h3 {
    font-weight: 600;
    color: #000;
}

h4 {
    font-weight: 500;
    color: #333;
}

.btn-primary {
    background-color: #17726d;
    border: none;
    padding: 10px;
}

.btn-primary:hover{
    background-color: #e8e8e8;
    color: #000;
    border: none;
    padding: 10px;
}

input::placeholder {
    color: #ccc;
}

form input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

/* Input fields when selected (focused) */
form input:focus {
    border-color: #17726d;  /* Change border color to a blue shade */
    background-color: #2e7975;  /* Light blue background */
    outline: none;  /* Removes the default outline */
    box-shadow: 0 0 5px #17726d; /* Add a subtle box shadow for better effect */
}

/* Placeholder color when input is not focused */
form input::placeholder {
    color: #ccc;
}

/* Placeholder color when input is focused */
form input:focus::placeholder {
    color: #aaa;  /* You can also change the placeholder color when focused */
}

.form-check-label {
    color: #666;
}

.bg-light img {
    padding: 0%;
    height: auto;
}


.image-on-top {
    position: absolute;
    top: -70px; /* Adjust this value to control how far above the bg-light div the image is */
    left: 50%;
    transform: translateX(-50%);
     /* Control the image size */
    width: 100%;
}
  
.right-section {
    position: relative; /* Make this section a relative container */
}

.alert-info {
    background-color: whitesmoke;
    border: None;
}

.alert-heading {
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}