.rent-card {
    transform: translateY(-5px);
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 100%;
    padding: 14px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    @media (max-width: 1256px) {
        padding: 24px 30px;
    }
    @media (max-width: 991px) {
        padding: 14px 30px;
    }
}
.form-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #222222;
}

.flatpickr-input:hover {
    cursor: pointer;
}

.flatpickr-input {
    border: transparent;
    border-radius: 8px;
    padding-left: 25px;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
    background: url('/img/svg/calendar.svg') no-repeat left center;
}

.flatpickr-input:focus {
    border: transparent;
    box-shadow: none;
    outline: none;
}

.flatpickr-input::placeholder {
    color: #9ca3af;
}

.calendar-input::before{
    content: "";
    height: 10px;
    width: 14px;
    background: url('/img/svg/dropdown.svg') no-repeat left center;
    position: absolute;
    right: 30px;
    top: 32px;
}

.btn-dark {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    @media (max-width: 991px) {
        margin-top: 5px;
    }
}

label.input input:checked ~ .radiomark.radiomark-button {
    background: #26272b;
    color: #fff;
}

label.input input[type=radio] {
    display: none;
}

label.input .radiomark.radiomark-button {
    color: #b1b3c9;
    border: none;
    border-radius: 20px;
    padding: 7px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
    margin: 0 5px;
}

label.input {
    position: relative;
    display: flex;
    padding: 5px 0;
    font-size: 14px;
    align-items: center;
    cursor: pointer;
    color: #b1b3c9;
}

label.input input, label.input select {
    border-radius: 3px;
    border: 1px solid #b1b3c9;
    color: #26272b;
    width: 100%;
    outline: none;
    padding: 5px 15px;
    font-weight: 200;
    line-height: 30px;
    font-size: 14px;
}
