body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 13px 45px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 550px;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
}

.checklist {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.checklist div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.checklist div:last-child {
    margin-bottom: 0;
}

.checklist i {
    color: green;
    margin-right: 8px;
}

.check{
    color: green;
}

.cross{
    color: red;
}

p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
  }
  .btn:hover {
    background-color: #0056b3;
  }

a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }

  a:hover {
    background-color: #0056b3;
  }

  .form-area{
    margin-top: 5px;
  }

  label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
  }

  input[type="text"], input[type="password"], select {
    width: 100%;
    padding: 10px;
    /* margin-bottom: 15px; */
    border: 1px solid #c8ddff;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 15px;
  }

 textarea {
    width: 100%;
    padding: 10px;
    /* margin-bottom: 15px; */
    border: 1px solid #c8ddff;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 15px;
  }

  input:focus {
    outline: 2px solid #92b5ed;
  }

  input::placeholder {
    color: #aaa; /* Light gray */
    opacity: 0.7; /* Adjust transparency */
}

  .d-flex{
    display: flex;
    flex-direction: row;
    margin-bottom: 15px !important;
  }

  .column-12{
    width: 100%;
  }

.text-red{
    color: rgb(255, 2, 2);
}

.success-btn {
    background-color: #28a745; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.success-btn:hover {
    background-color: #218838;
}

.select2-container .select2-selection--single {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}
