/* Global Styles for the Body */



body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f2f5; /* A very light gray for a clean background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.dasboard.main-header{
    background:#2B2C5B;
}


.p-4.signup{
    margin-top:150px;
}

.dashboard-wrapper a{
 background:#2b2b5e!important; 
  border:2px solid #2b2b5e;
}

.dashboard-wrapper a:hover{
 background:#00cde5!important; 
  border:2px solid #00cde5;
}

/* Main Container for the Form */
.container {
    max-width: 500px; /* Limits the width of the form container */
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for a "lifted" effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px); /* Lifts the card slightly on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Headings */
h2 {
    text-align: center;
    color: #333333;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Form Groups and Labels */
.form-group {
    margin-bottom: 20px;
}

label {
    color: #555555;
    font-weight: 500;
}

/* Input Fields and Selects */
.form-control, .form-control-range {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    color: #495057;
    background-color: #f8f9fa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-control-range:focus {
    border-color: #009ba0; /* Darker teal color on focus */
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 155, 160, 0.25); /* Subtle glowing effect */
}

/* Buttons */
.btn {
    display: block; /* Make the button full-width */
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    color: #ffffff;
    background-color: #00CDE5;
    border-color: #00CDE5;
}

.btn-primary:hover {
    background-color: #009ba0; /* Darker teal on hover */
    border-color: #009ba0;
    color: #ffffff;
}

.btn-link {
    display: inline;
    width: auto;
    background-color: transparent;
    border: none;
    color: #00CDE5;
    font-weight: 500;
    padding: 0;
    text-align: left;
}

.btn-link:hover {
    color: #009ba0;
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Paragraph with links at the bottom */
p.mt-3 {
    text-align: center;
    margin-top: 25px !important;
    color: #666666;
}

p.mt-3 a {
    color: #00CDE5;
    text-decoration: none;
    font-weight: 500;
}

p.mt-3 a:hover {
    color: #009ba0;
    text-decoration: underline;
}

/* Custom styles for the loan amount slider and label */
#loanLabel {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555555;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .container {
        padding: 25px; /* Reduce padding on smaller screens */
    }

    .btn {
        font-size: 16px; /* Smaller font for buttons on mobile */
    }

    h2 {
        font-size: 24px;
    }
}


.form-group.min-amount{
border:1px solid #ced4da;  
  background-color:#f8f9fa;
padding:10px;
border-radius:8px;
}

.form-group.min-amount label{
margin:0;
}

/*Dashboard css*/



@media(max-width:767px){
 .dashboard-wrapper{
   padding:0!important;
  }
  
  .dashboard-wrapper tr td button{
    margin-top:10px!important;
    width:100%!important;
  }
  
   .dashboard-wrapper tr a{
   margin-top:20px!important;
         padding:10px 20px!important;

  }
}

@media(max-width:567px){

  
   .dashboard-wrapper tr td{
  font-size:12px!important;

  }
}


.table tbody tr:hover , .table-hover>tbody>tr:hover>* {
 background:none!important;
  box-shadow: none!important;
    transform: none!important;
    background-color: #fff!important;
}


.main-menu__list li a{
 text-decoration:none; 
}