/* General Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}
.wskCheckbox.checked{
    border-left: 3px solid #485465;
  border-bottom: 5px solid #485465;
/*   box-shadow: 0 10px 40px #485465; */
  background: transparent;
  border-top: 1px solid rgba(0,0,0,0);
  border-right: 1px solid rgba(0,0,0,0);
  -webkit-transform: rotate(-45deg) scaleY(0.5);
  -moz-transform: rotate(-45deg) scaleY(0.5);
  -ms-transform: rotate(-45deg) scaleY(0.5);
  -o-transform: rotate(-45deg) scaleY(0.5);
  transform: rotate(-45deg) scaleY(0.5);
}
.wskCheckbox.checked + label{
    text-decoration: underline;
}
.wskLabel {
    color: #485465;
    cursor: url(../../images/LinkSelect.cur), auto;
    font-size: 12pt;
    display: block;
    overflow: hidden;
    padding-top: 20px;
    position: relative;
    min-height: 40px;
    line-height: 15px;
  }
  .wskLabel:hover {
	color: #8A9A5B !important;
}
.radio td:hover{
    background: #485465 !important;
}
.radio td.highlight{
    background: #485465 !important;
}


/* Form Container */
.form-container {
    margin-top: 15px !important;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05); /* Soft shadow */
    border-left: 20px solid #333; /* Adjust width and color as needed */
    transition: box-shadow 0.3s ease; /* Subtle hover effect */
}

.form-container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); /* Slightly stronger shadow on hover */
}

/* Form Title */
.form-title {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

/* Input Fields */
.form-control {
    font-size: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 12px 16px;
    background-color: #f7f7f7;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}


.radio .highlight {
    background: #d2d2d2 !important;  /* Matches the green tone of the gradient */
    border-radius: 8px;
}

.radio .td:hover {
    background: #d2d2d2 !important;  /* Same as highlight for consistency */
    cursor: url(../../assets/images/LinkSelect.cur), auto;
    border-radius: 8px;
}


.form-control:focus {
    background-color: #fff;
    border-color: #333;
    outline: none;
    box-shadow: none;
}

/* Labels */
.form-label {


    margin-bottom: 8px;

}

/* Buttons */
.btn-success {
    background-color: #333;
    border-color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-block;
    width: 100%;
}

.btn-success:hover {
    background-color: #555;
    border-color: #555;
}

/* Required Info */
.required-info {
    color: #dc3545;
    font-size: 12px;
}

/* Feedback Messages */
.invalid-feedback,
.alert {
    font-size: 14px;
}

/* Checkboxes */
.form-check-label {
    color: #333;
}

/* Margin for Bottom Fields */
.mb-3 {
    margin-bottom: 1.5rem;
}

/* Form Layout */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
}
