*{
    font-family: "Poppins", sans-serif;
}
/*body{*/
/*    height: 100vh;*/
/*    padding: 40px;*/
/*}*/
/*.container {*/
/*    height: 100%;*/
/*    margin: auto;*/
/*    display: flex;*/
/*}*/
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo img{
    width: 50%;
}

.logo span{
    font-size: 16px;
    line-height: 1.5;
}

.input-field input{
    padding: 14px;
}

.input-field input::placeholder{
    color: #514f4f;
}

.input-field input:focus {
    border-color: #838282;
    box-shadow: none;
}
.input-field textarea{
    height: 100px;
}

.form-label {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
}


/* select category */

 .custom-select {
      position: relative;
      width: 100%;
    }

    .select-selected {
      background-color: #fff;
      border: 1px solid #dee2e6;
      padding: 14px;
      cursor: pointer;
      border-radius: 6px;
      color: #514f4f;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .select-arrow {
      margin-left: 10px;
      font-size: 14px;
      color: #6c757d;
    }

    .select-items {
      position: absolute;
      background-color: #fff;
      border: 1px solid #dee2e6;
      border-top: none;
      width: 100%;
      max-height: 220px;
      overflow-y: auto;
      z-index: 9999;
      display: none;
      border-radius: 0 0 6px 6px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

    .select-items .option-item {
      padding: 10px;
      cursor: pointer;
    }

    .select-items .option-item:hover {
      background-color: #f1f1f1;
    }

    .search-box {
      width: 100%;
      padding: 8px 10px;
      border: none;
      border-bottom: 1px solid #ddd;
      outline: none;
      box-sizing: border-box;
    }

    .submit-btn button{
        padding: 14px;
        width: 100%;
        margin: 16px 0 0;
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
        background-color: #000;
        border: 1px solid #000 !important;
        color: #fff;
        box-shadow: none;
        border: none;
    }

    .submit-btn button:hover{
        border: 1px solid #1e1e1e;
        background: #1e1e1e;
        color: #fff;
    }

    