*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html,
body {
    font-family: sans-serif;
}

body {
    background-color: rgba(0, 0, 0, 0.03);
    max-width: 320px !important;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Header */

header {
    padding: 15px 0;
    z-index: 2;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.02);
}

header .title {
    color: royalblue;
    font-size: 22px;
}

header .title-box {
    text-align: center;
}

/* Top Description */

.description {
    padding: 15px 0;
}

.description .title {
    margin-bottom: 10px;
    font-size: 17px;
}

.description p {
    margin: 10px 0;
    color: crimson;
    font-size: 12px;
}

/* Section Main Content */

.section-main_content {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Every Form */
.section-main_content form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

/* Form 2 */
.section-main_content .form-2 .title {
    font-size: 18px;
}

.section-main_content .form-2 .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* Every From Input */
.section-main_content form input,
.section-main_content form select {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 7px 12px;
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 15px;
}

/* Submit Button */
.section-main_content .link,
.button-submit {
    background-color: #0c8b50;
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 20px;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
}

.section-main_content textarea {
    height: 150px;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
}

.section-main_content label {
    font-size: 12px;
    font-weight: bold;
}

/* Load images box */

.image-load_boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.imageLoad-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.imageLoad-box label {
    cursor: pointer;
    padding: 20px;
}

.imageLoad-box label {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custon Select Element */

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}

.select-selected {
    background-color: white;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px !important;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: white;
    width: 100%;
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 99;
    border-radius: 8px;
}

.select-items.show {
    display: block;
}

.select-items div {
    padding: 10px;
    cursor: pointer;
}

.select-items div:hover {
    background-color: #f1f1f1;
}

/* Modal & SMS Varification */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);

    display: none;
    align-items: center;
    justify-content: center;
}

.modal-inner {
    background-color: #fff;
    max-width: 300px;
    padding: 40px 20px 20px 20px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal .title {
    font-size: 20px;
    color: #0c8b50;
}

.modal-inner .number-box {
    text-align: center;
}

.modal-inner .number-box p:first-child {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
    margin: 5px 0;
}

.modal-inner .number-box p:last-child {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.modal-inner .input-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-inner .input-boxes input {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-inner .time-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-inner .time-box p {
    color: #666;
}

.modal-inner .time-box span {
    font-weight: bold;
}

.modal-inner .button-submit {
    margin-top: 40px;
    font-size: 15px;
}

.modal.active {
    display: flex !important;
}

.sent-information.modal .title {
    text-align: center;
    font-size: 18px;
}

.sent-information.modal .desc {
    font-size: 16px;
    color: #6b798a;
    text-align: center;
}

.sent-information.modal button {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #0c8b50;
    border: none;
    color: #fff;
    border-radius: 15px;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 500;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

/* Text label next to input */
.input-group-text {
    background-color: #f1f1f1;
    padding: 10px 15px;
    border-right: 1px solid #ccc;
    font-size: 14px;
    color: #555;
}

/* Input Field */
.input-field {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

/* Input Field focus style */
.input-field:focus {
    background-color: #e9f5ff;
}

.phone-number_box .input-box {
    display: flex;
    gap: 5px;
    margin-top: 10px;
  }

  .phone-number_box .input-box button {
    background-color: #e0e0e0;
    border: none;
    border-radius: 4px;
    padding: 0 4px;
    font-size: 16px;
    border: 1px solid #bbb;
  }

  .phone-number_box .input-box input {
    margin: 0;
  }
